vscode-extensions.dendron.dendron: init at 0.124.0 (#377422)
This commit is contained in:
@@ -1316,6 +1316,18 @@ let
|
||||
};
|
||||
};
|
||||
|
||||
dendron.adjust-heading-level = callPackage ./dendron.adjust-heading-level { };
|
||||
|
||||
dendron.dendron = callPackage ./dendron.dendron { };
|
||||
|
||||
dendron.dendron-markdown-preview-enhanced =
|
||||
callPackage ./dendron.dendron-markdown-preview-enhanced
|
||||
{ };
|
||||
|
||||
dendron.dendron-paste-image = callPackage ./dendron.dendron-paste-image { };
|
||||
|
||||
dendron.dendron-snippet-maker = callPackage ./dendron.dendron-snippet-maker { };
|
||||
|
||||
denoland.vscode-deno = buildVscodeMarketplaceExtension {
|
||||
mktplcRef = {
|
||||
name = "vscode-deno";
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
{ lib, vscode-utils }:
|
||||
|
||||
vscode-utils.buildVscodeMarketplaceExtension {
|
||||
mktplcRef = {
|
||||
name = "adjust-heading-level";
|
||||
publisher = "dendron";
|
||||
version = "0.1.0";
|
||||
hash = "sha256-u50RJ7ETVFUC43mp94VJsR931b9REBaTyRhZE7muoLw=";
|
||||
};
|
||||
meta = {
|
||||
description = "A VSCode extension to adjust the heading level of the selected text";
|
||||
downloadPage = "https://marketplace.visualstudio.com/items?itemName=dendron.adjust-heading-level";
|
||||
homepage = "https://github.com/kevinslin/adjust-heading-level";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = [ lib.maintainers.ivyfanchiang ];
|
||||
};
|
||||
}
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
{ lib, vscode-utils }:
|
||||
|
||||
vscode-utils.buildVscodeMarketplaceExtension {
|
||||
mktplcRef = {
|
||||
name = "dendron-markdown-preview-enhanced";
|
||||
publisher = "dendron";
|
||||
version = "0.10.57";
|
||||
hash = "sha256-uJmdsC+nKCkAJVH+szNepPcyfHD4ZQ83on195jjqZig=";
|
||||
};
|
||||
meta = {
|
||||
description = "A SUPER POWERFUL markdown extension for Visual Studio Code to bring you a wonderful markdown writing experience";
|
||||
downloadPage = "https://marketplace.visualstudio.com/items?itemName=dendron.dendron-markdown-preview-enhanced";
|
||||
homepage = "https://github.com/dendronhq/markdown-preview-enhanced";
|
||||
license = lib.licenses.ncsa;
|
||||
maintainers = [ lib.maintainers.ivyfanchiang ];
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
{ lib, vscode-utils, ... }:
|
||||
|
||||
vscode-utils.buildVscodeMarketplaceExtension {
|
||||
mktplcRef = {
|
||||
name = "dendron-paste-image";
|
||||
publisher = "dendron";
|
||||
version = "1.1.1";
|
||||
hash = "sha256-SlW8MEWBgf8cJsdSzeegqPiAlEvlnrxuvrJJdhHwq2E=";
|
||||
};
|
||||
meta = {
|
||||
description = "Paste images directly from your clipboard to markdown/asciidoc(or other file)!";
|
||||
downloadPage = "https://marketplace.visualstudio.com/items?itemName=dendron.dendron-paste-image";
|
||||
homepage = "https://github.com/dendronhq/dendron-paste-image";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.ivyfanchiang ];
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
{ lib, vscode-utils }:
|
||||
|
||||
vscode-utils.buildVscodeMarketplaceExtension {
|
||||
mktplcRef = {
|
||||
name = "dendron-snippet-maker";
|
||||
publisher = "dendron";
|
||||
version = "0.1.6";
|
||||
hash = "sha256-KOIbAt6EjqRGaqOlCV+HO9phR4tk2KV/+FMCefCKN+8=";
|
||||
};
|
||||
meta = {
|
||||
description = "Easily create markdown snippets. Used in Dendron but can also be used standalone.";
|
||||
downloadPage = "https://marketplace.visualstudio.com/items?itemName=dendron.dendron-snippet-maker";
|
||||
homepage = "https://github.com/dendronhq/easy-snippet-maker";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.ivyfanchiang ];
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
{ lib, vscode-utils }:
|
||||
|
||||
vscode-utils.buildVscodeMarketplaceExtension {
|
||||
mktplcRef = {
|
||||
name = "dendron";
|
||||
publisher = "dendron";
|
||||
version = "0.124.0";
|
||||
hash = "sha256-/hxgmmiMUfBtPt5BcuNvtXs3LzDmPwDuUOyDf2udHws=";
|
||||
};
|
||||
meta = {
|
||||
changelog = "https://github.com/dendronhq/dendron/blob/master/CHANGELOG.md";
|
||||
description = "The personal knowledge management (PKM) tool that grows as you do!";
|
||||
downloadPage = "https://marketplace.visualstudio.com/items?itemName=dendron.dendron";
|
||||
homepage = "https://www.dendron.so/";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = [ lib.maintainers.ivyfanchiang ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user