@codingame/monaco-vscode-markdown-basics-default-extension 16.1.1 → 17.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +1 -1
- package/package.json +2 -2
- package/resources/markdown.code-snippets +1 -1
package/index.js
CHANGED
|
@@ -4,7 +4,7 @@ var manifest = {name:"markdown",displayName:"%displayName%",description:"%descri
|
|
|
4
4
|
|
|
5
5
|
const { registerFileUrl, whenReady } = registerExtension(manifest, undefined, {"system":true});
|
|
6
6
|
registerFileUrl('./language-configuration.json', new URL('./resources/language-configuration.json', import.meta.url).toString(), {"mimeType":"application/json","size":709});
|
|
7
|
-
registerFileUrl('./snippets/markdown.code-snippets', new URL('./resources/markdown.code-snippets', import.meta.url).toString(), {"size":
|
|
7
|
+
registerFileUrl('./snippets/markdown.code-snippets', new URL('./resources/markdown.code-snippets', import.meta.url).toString(), {"size":2447});
|
|
8
8
|
registerFileUrl('./syntaxes/markdown.tmLanguage.json', new URL('./resources/markdown.tmLanguage.json', import.meta.url).toString(), {"mimeType":"application/json","size":57179});
|
|
9
9
|
registerFileUrl('package.json', new URL('./resources/package.json', import.meta.url).toString(), {"mimeType":"application/json","size":2815});
|
|
10
10
|
registerFileUrl('package.nls.json', new URL('./resources/package.nls.json', import.meta.url).toString(), {"mimeType":"application/json","size":114});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-markdown-basics-default-extension",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "17.0.0",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -18,6 +18,6 @@
|
|
|
18
18
|
"module": "index.js",
|
|
19
19
|
"types": "index.d.ts",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@codingame/monaco-vscode-api": "
|
|
21
|
+
"@codingame/monaco-vscode-api": "17.0.0"
|
|
22
22
|
}
|
|
23
23
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"Insert bold text":{"prefix":"bold","body":"**${1:${TM_SELECTED_TEXT}}**$0","description":"Insert bold text"},"Insert italic text":{"prefix":"italic","body":"*${1:${TM_SELECTED_TEXT}}*$0","description":"Insert italic text"},"Insert quoted text":{"prefix":"quote","body":"
|
|
1
|
+
{"Insert bold text":{"prefix":"bold","body":"**${1:${TM_SELECTED_TEXT}}**$0","description":"Insert bold text"},"Insert italic text":{"prefix":"italic","body":"*${1:${TM_SELECTED_TEXT}}*$0","description":"Insert italic text"},"Insert quoted text":{"prefix":"quote","body":"${1:${TM_SELECTED_TEXT/^/> /gm}}","description":"Insert quoted text"},"Insert inline code":{"prefix":"code","body":"`${1:${TM_SELECTED_TEXT}}`$0","description":"Insert inline code"},"Insert fenced code block":{"prefix":"fenced codeblock","body":["```${1|python,c,c++,c#,ruby,go,java,php,htm,css,javascript,json,markdown,console|}","${TM_SELECTED_TEXT}$0","```"],"description":"Insert fenced code block"},"Insert heading level 1":{"prefix":"heading1","body":"# ${1:${TM_SELECTED_TEXT}}","description":"Insert heading level 1"},"Insert heading level 2":{"prefix":"heading2","body":"## ${1:${TM_SELECTED_TEXT}}","description":"Insert heading level 2"},"Insert heading level 3":{"prefix":"heading3","body":"### ${1:${TM_SELECTED_TEXT}}","description":"Insert heading level 3"},"Insert heading level 4":{"prefix":"heading4","body":"#### ${1:${TM_SELECTED_TEXT}}","description":"Insert heading level 4"},"Insert heading level 5":{"prefix":"heading5","body":"##### ${1:${TM_SELECTED_TEXT}}","description":"Insert heading level 5"},"Insert heading level 6":{"prefix":"heading6","body":"###### ${1:${TM_SELECTED_TEXT}}","description":"Insert heading level 6"},"Insert unordered list":{"prefix":"unordered list","body":["- ${1:first}","- ${2:second}","- ${3:third}","$0"],"description":"Insert unordered list"},"Insert ordered list":{"prefix":"ordered list","body":["1. ${1:first}","2. ${2:second}","3. ${3:third}","$0"],"description":"Insert ordered list"},"Insert horizontal rule":{"prefix":"horizontal rule","body":"----------\n","description":"Insert horizontal rule"},"Insert link":{"prefix":"link","body":"[${TM_SELECTED_TEXT:${1:text}}](${2:https://})$0","description":"Insert link"},"Insert image":{"prefix":"image","body":"$0","description":"Insert image"},"Insert strikethrough":{"prefix":"strikethrough","body":"~~${1:${TM_SELECTED_TEXT}}~~","description":"Insert strikethrough"},"Insert inline math":{"prefix":["inline math"],"body":"$${1:${TM_SELECTED_TEXT}}$","description":"Insert inline math"},"Insert fenced math":{"prefix":["fenced math"],"body":["$$","${1:${TM_SELECTED_TEXT}}","$$"],"description":"Insert fenced math"}}
|