@codingame/monaco-vscode-markdown-math-default-extension 5.1.2-segmenter.1 → 5.2.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
CHANGED
|
@@ -3,39 +3,39 @@ import { registerExtension } from 'vscode/extensions';
|
|
|
3
3
|
var manifest = {name:"markdown-math",displayName:"%displayName%",description:"%description%",version:"1.0.0",icon:"icon.png",publisher:"vscode",license:"MIT",aiKey:"0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255",engines:{vscode:"^1.54.0"},categories:["Other","Programming Languages"],capabilities:{virtualWorkspaces:true,untrustedWorkspaces:{supported:true}},main:undefined,browser:"./dist/browser/extension",activationEvents:[],contributes:{languages:[{id:"markdown-math",aliases:[]}],grammars:[{language:"markdown-math",scopeName:"text.html.markdown.math",path:"./syntaxes/md-math.tmLanguage.json"},{scopeName:"markdown.math.block",path:"./syntaxes/md-math-block.tmLanguage.json",injectTo:["text.html.markdown"],embeddedLanguages:{"meta.embedded.math.markdown":"latex"}},{scopeName:"markdown.math.inline",path:"./syntaxes/md-math-inline.tmLanguage.json",injectTo:["text.html.markdown"],embeddedLanguages:{"meta.embedded.math.markdown":"latex","punctuation.definition.math.end.markdown":"latex"}}],notebookRenderer:[{id:"vscode.markdown-it-katex-extension",displayName:"Markdown it KaTeX renderer",entrypoint:{"extends":"vscode.markdown-it-renderer",path:"./notebook-out/katex.js"}}],"markdown.markdownItPlugins":true,"markdown.previewStyles":["./notebook-out/katex.min.css","./preview-styles/index.css"],configuration:[{title:"Markdown Math",properties:{"markdown.math.enabled":{type:"boolean","default":true,description:"%config.markdown.math.enabled%"},"markdown.math.macros":{type:"object",additionalProperties:{type:"string"},"default":{},description:"%config.markdown.math.macros%",scope:"resource"}}}]},repository:{type:"git",url:"https://github.com/microsoft/vscode.git"}};
|
|
4
4
|
|
|
5
5
|
const { registerFileUrl, whenReady } = registerExtension(manifest, undefined, {"system":true,"readmePath":"README.md"});
|
|
6
|
-
registerFileUrl('README.md', new URL('./resources/README.md', import.meta.url).toString(),
|
|
7
|
-
registerFileUrl('icon.png', new URL('./resources/icon.png', import.meta.url).toString(),
|
|
8
|
-
registerFileUrl('package.json', new URL('./resources/package.json', import.meta.url).toString(),
|
|
9
|
-
registerFileUrl('package.nls.json', new URL('./resources/package.nls.json', import.meta.url).toString(),
|
|
10
|
-
registerFileUrl('notebook-out/katex.js', new URL('./resources/katex.js', import.meta.url).toString(),
|
|
11
|
-
registerFileUrl('notebook-out/katex', new URL('./resources/katex.js', import.meta.url).toString(),
|
|
12
|
-
registerFileUrl('notebook-out/katex.min.css', new URL('./resources/katex.min.css', import.meta.url).toString(),
|
|
13
|
-
registerFileUrl('preview-styles/index.css', new URL('./resources/index.css', import.meta.url).toString(),
|
|
14
|
-
registerFileUrl('syntaxes/md-math-block.tmLanguage.json', new URL('./resources/md-math-block.tmLanguage.json', import.meta.url).toString(),
|
|
15
|
-
registerFileUrl('syntaxes/md-math-inline.tmLanguage.json', new URL('./resources/md-math-inline.tmLanguage.json', import.meta.url).toString(),
|
|
16
|
-
registerFileUrl('syntaxes/md-math.tmLanguage.json', new URL('./resources/md-math.tmLanguage.json', import.meta.url).toString(),
|
|
17
|
-
registerFileUrl('dist/browser/extension.js', new URL('./resources/extension.js', import.meta.url).toString(),
|
|
18
|
-
registerFileUrl('dist/browser/extension', new URL('./resources/extension.js', import.meta.url).toString(),
|
|
19
|
-
registerFileUrl('dist/browser/extension.js.map', new URL('./resources/extension.js.map', import.meta.url).toString(),
|
|
20
|
-
registerFileUrl('notebook-out/fonts/KaTeX_AMS-Regular.woff2', new URL('./resources/KaTeX_AMS-Regular.woff2', import.meta.url).toString(),
|
|
21
|
-
registerFileUrl('notebook-out/fonts/KaTeX_Caligraphic-Bold.woff2', new URL('./resources/KaTeX_Caligraphic-Bold.woff2', import.meta.url).toString(),
|
|
22
|
-
registerFileUrl('notebook-out/fonts/KaTeX_Caligraphic-Regular.woff2', new URL('./resources/KaTeX_Caligraphic-Regular.woff2', import.meta.url).toString(),
|
|
23
|
-
registerFileUrl('notebook-out/fonts/KaTeX_Fraktur-Bold.woff2', new URL('./resources/KaTeX_Fraktur-Bold.woff2', import.meta.url).toString(),
|
|
24
|
-
registerFileUrl('notebook-out/fonts/KaTeX_Fraktur-Regular.woff2', new URL('./resources/KaTeX_Fraktur-Regular.woff2', import.meta.url).toString(),
|
|
25
|
-
registerFileUrl('notebook-out/fonts/KaTeX_Main-Bold.woff2', new URL('./resources/KaTeX_Main-Bold.woff2', import.meta.url).toString(),
|
|
26
|
-
registerFileUrl('notebook-out/fonts/KaTeX_Main-BoldItalic.woff2', new URL('./resources/KaTeX_Main-BoldItalic.woff2', import.meta.url).toString(),
|
|
27
|
-
registerFileUrl('notebook-out/fonts/KaTeX_Main-Italic.woff2', new URL('./resources/KaTeX_Main-Italic.woff2', import.meta.url).toString(),
|
|
28
|
-
registerFileUrl('notebook-out/fonts/KaTeX_Main-Regular.woff2', new URL('./resources/KaTeX_Main-Regular.woff2', import.meta.url).toString(),
|
|
29
|
-
registerFileUrl('notebook-out/fonts/KaTeX_Math-BoldItalic.woff2', new URL('./resources/KaTeX_Math-BoldItalic.woff2', import.meta.url).toString(),
|
|
30
|
-
registerFileUrl('notebook-out/fonts/KaTeX_Math-Italic.woff2', new URL('./resources/KaTeX_Math-Italic.woff2', import.meta.url).toString(),
|
|
31
|
-
registerFileUrl('notebook-out/fonts/KaTeX_SansSerif-Bold.woff2', new URL('./resources/KaTeX_SansSerif-Bold.woff2', import.meta.url).toString(),
|
|
32
|
-
registerFileUrl('notebook-out/fonts/KaTeX_SansSerif-Italic.woff2', new URL('./resources/KaTeX_SansSerif-Italic.woff2', import.meta.url).toString(),
|
|
33
|
-
registerFileUrl('notebook-out/fonts/KaTeX_SansSerif-Regular.woff2', new URL('./resources/KaTeX_SansSerif-Regular.woff2', import.meta.url).toString(),
|
|
34
|
-
registerFileUrl('notebook-out/fonts/KaTeX_Script-Regular.woff2', new URL('./resources/KaTeX_Script-Regular.woff2', import.meta.url).toString(),
|
|
35
|
-
registerFileUrl('notebook-out/fonts/KaTeX_Size1-Regular.woff2', new URL('./resources/KaTeX_Size1-Regular.woff2', import.meta.url).toString(),
|
|
36
|
-
registerFileUrl('notebook-out/fonts/KaTeX_Size2-Regular.woff2', new URL('./resources/KaTeX_Size2-Regular.woff2', import.meta.url).toString(),
|
|
37
|
-
registerFileUrl('notebook-out/fonts/KaTeX_Size3-Regular.woff2', new URL('./resources/KaTeX_Size3-Regular.woff2', import.meta.url).toString(),
|
|
38
|
-
registerFileUrl('notebook-out/fonts/KaTeX_Size4-Regular.woff2', new URL('./resources/KaTeX_Size4-Regular.woff2', import.meta.url).toString(),
|
|
39
|
-
registerFileUrl('notebook-out/fonts/KaTeX_Typewriter-Regular.woff2', new URL('./resources/KaTeX_Typewriter-Regular.woff2', import.meta.url).toString(),
|
|
6
|
+
registerFileUrl('README.md', new URL('./resources/README.md', import.meta.url).toString(), {"mimeType":"text/markdown","size":246});
|
|
7
|
+
registerFileUrl('icon.png', new URL('./resources/icon.png', import.meta.url).toString(), {"mimeType":"image/png","size":903});
|
|
8
|
+
registerFileUrl('package.json', new URL('./resources/package.json', import.meta.url).toString(), {"mimeType":"application/json","size":1808});
|
|
9
|
+
registerFileUrl('package.nls.json', new URL('./resources/package.nls.json', import.meta.url).toString(), {"mimeType":"application/json","size":363});
|
|
10
|
+
registerFileUrl('notebook-out/katex.js', new URL('./resources/katex.js', import.meta.url).toString(), {"mimeType":"application/javascript","size":277333});
|
|
11
|
+
registerFileUrl('notebook-out/katex', new URL('./resources/katex.js', import.meta.url).toString(), {"mimeType":"application/javascript","size":277333});
|
|
12
|
+
registerFileUrl('notebook-out/katex.min.css', new URL('./resources/katex.min.css.txt', import.meta.url).toString(), {"mimeType":"text/css","size":23197});
|
|
13
|
+
registerFileUrl('preview-styles/index.css', new URL('./resources/index.css.txt', import.meta.url).toString(), {"mimeType":"text/css","size":416});
|
|
14
|
+
registerFileUrl('syntaxes/md-math-block.tmLanguage.json', new URL('./resources/md-math-block.tmLanguage.json', import.meta.url).toString(), {"mimeType":"application/json","size":1418});
|
|
15
|
+
registerFileUrl('syntaxes/md-math-inline.tmLanguage.json', new URL('./resources/md-math-inline.tmLanguage.json', import.meta.url).toString(), {"mimeType":"application/json","size":1388});
|
|
16
|
+
registerFileUrl('syntaxes/md-math.tmLanguage.json', new URL('./resources/md-math.tmLanguage.json', import.meta.url).toString(), {"mimeType":"application/json","size":1679});
|
|
17
|
+
registerFileUrl('dist/browser/extension.js', new URL('./resources/extension.js', import.meta.url).toString(), {"mimeType":"application/javascript","size":274410});
|
|
18
|
+
registerFileUrl('dist/browser/extension', new URL('./resources/extension.js', import.meta.url).toString(), {"mimeType":"application/javascript","size":274410});
|
|
19
|
+
registerFileUrl('dist/browser/extension.js.map', new URL('./resources/extension.js.map', import.meta.url).toString(), {"mimeType":"application/json","size":1003955});
|
|
20
|
+
registerFileUrl('notebook-out/fonts/KaTeX_AMS-Regular.woff2', new URL('./resources/KaTeX_AMS-Regular.woff2', import.meta.url).toString(), {"mimeType":"font/woff2","size":28076});
|
|
21
|
+
registerFileUrl('notebook-out/fonts/KaTeX_Caligraphic-Bold.woff2', new URL('./resources/KaTeX_Caligraphic-Bold.woff2', import.meta.url).toString(), {"mimeType":"font/woff2","size":6912});
|
|
22
|
+
registerFileUrl('notebook-out/fonts/KaTeX_Caligraphic-Regular.woff2', new URL('./resources/KaTeX_Caligraphic-Regular.woff2', import.meta.url).toString(), {"mimeType":"font/woff2","size":6908});
|
|
23
|
+
registerFileUrl('notebook-out/fonts/KaTeX_Fraktur-Bold.woff2', new URL('./resources/KaTeX_Fraktur-Bold.woff2', import.meta.url).toString(), {"mimeType":"font/woff2","size":11348});
|
|
24
|
+
registerFileUrl('notebook-out/fonts/KaTeX_Fraktur-Regular.woff2', new URL('./resources/KaTeX_Fraktur-Regular.woff2', import.meta.url).toString(), {"mimeType":"font/woff2","size":11316});
|
|
25
|
+
registerFileUrl('notebook-out/fonts/KaTeX_Main-Bold.woff2', new URL('./resources/KaTeX_Main-Bold.woff2', import.meta.url).toString(), {"mimeType":"font/woff2","size":25324});
|
|
26
|
+
registerFileUrl('notebook-out/fonts/KaTeX_Main-BoldItalic.woff2', new URL('./resources/KaTeX_Main-BoldItalic.woff2', import.meta.url).toString(), {"mimeType":"font/woff2","size":16780});
|
|
27
|
+
registerFileUrl('notebook-out/fonts/KaTeX_Main-Italic.woff2', new URL('./resources/KaTeX_Main-Italic.woff2', import.meta.url).toString(), {"mimeType":"font/woff2","size":16988});
|
|
28
|
+
registerFileUrl('notebook-out/fonts/KaTeX_Main-Regular.woff2', new URL('./resources/KaTeX_Main-Regular.woff2', import.meta.url).toString(), {"mimeType":"font/woff2","size":26272});
|
|
29
|
+
registerFileUrl('notebook-out/fonts/KaTeX_Math-BoldItalic.woff2', new URL('./resources/KaTeX_Math-BoldItalic.woff2', import.meta.url).toString(), {"mimeType":"font/woff2","size":16400});
|
|
30
|
+
registerFileUrl('notebook-out/fonts/KaTeX_Math-Italic.woff2', new URL('./resources/KaTeX_Math-Italic.woff2', import.meta.url).toString(), {"mimeType":"font/woff2","size":16440});
|
|
31
|
+
registerFileUrl('notebook-out/fonts/KaTeX_SansSerif-Bold.woff2', new URL('./resources/KaTeX_SansSerif-Bold.woff2', import.meta.url).toString(), {"mimeType":"font/woff2","size":12216});
|
|
32
|
+
registerFileUrl('notebook-out/fonts/KaTeX_SansSerif-Italic.woff2', new URL('./resources/KaTeX_SansSerif-Italic.woff2', import.meta.url).toString(), {"mimeType":"font/woff2","size":12028});
|
|
33
|
+
registerFileUrl('notebook-out/fonts/KaTeX_SansSerif-Regular.woff2', new URL('./resources/KaTeX_SansSerif-Regular.woff2', import.meta.url).toString(), {"mimeType":"font/woff2","size":10344});
|
|
34
|
+
registerFileUrl('notebook-out/fonts/KaTeX_Script-Regular.woff2', new URL('./resources/KaTeX_Script-Regular.woff2', import.meta.url).toString(), {"mimeType":"font/woff2","size":9644});
|
|
35
|
+
registerFileUrl('notebook-out/fonts/KaTeX_Size1-Regular.woff2', new URL('./resources/KaTeX_Size1-Regular.woff2', import.meta.url).toString(), {"mimeType":"font/woff2","size":5468});
|
|
36
|
+
registerFileUrl('notebook-out/fonts/KaTeX_Size2-Regular.woff2', new URL('./resources/KaTeX_Size2-Regular.woff2', import.meta.url).toString(), {"mimeType":"font/woff2","size":5208});
|
|
37
|
+
registerFileUrl('notebook-out/fonts/KaTeX_Size3-Regular.woff2', new URL('./resources/KaTeX_Size3-Regular.woff2', import.meta.url).toString(), {"mimeType":"font/woff2","size":3624});
|
|
38
|
+
registerFileUrl('notebook-out/fonts/KaTeX_Size4-Regular.woff2', new URL('./resources/KaTeX_Size4-Regular.woff2', import.meta.url).toString(), {"mimeType":"font/woff2","size":4928});
|
|
39
|
+
registerFileUrl('notebook-out/fonts/KaTeX_Typewriter-Regular.woff2', new URL('./resources/KaTeX_Typewriter-Regular.woff2', import.meta.url).toString(), {"mimeType":"font/woff2","size":13568});
|
|
40
40
|
|
|
41
41
|
export { whenReady };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-markdown-math-default-extension",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.2.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
|
-
"vscode": "npm:@codingame/monaco-vscode-api@5.
|
|
21
|
+
"vscode": "npm:@codingame/monaco-vscode-api@5.2.0"
|
|
22
22
|
}
|
|
23
23
|
}
|
|
File without changes
|
|
File without changes
|