Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/latex/package.json
3290 views
1
{
2
"name": "latex",
3
"displayName": "%displayName%",
4
"description": "%description%",
5
"version": "1.0.0",
6
"publisher": "vscode",
7
"license": "MIT",
8
"engines": {
9
"vscode": "*"
10
},
11
"scripts": {
12
"update-grammar": "node ./build/update-grammars.js"
13
},
14
"categories": ["Programming Languages"],
15
"contributes": {
16
"languages": [
17
{
18
"id": "tex",
19
"aliases": [
20
"TeX",
21
"tex"
22
],
23
"extensions": [
24
".sty",
25
".cls",
26
".bbx",
27
".cbx"
28
],
29
"configuration": "latex-language-configuration.json"
30
},
31
{
32
"id": "latex",
33
"aliases": [
34
"LaTeX",
35
"latex"
36
],
37
"extensions": [
38
".tex",
39
".ltx",
40
".ctx"
41
],
42
"configuration": "latex-language-configuration.json"
43
},
44
{
45
"id": "bibtex",
46
"aliases": [
47
"BibTeX",
48
"bibtex"
49
],
50
"extensions": [
51
".bib"
52
]
53
},
54
{
55
"id": "cpp_embedded_latex",
56
"configuration": "latex-cpp-embedded-language-configuration.json",
57
"aliases": []
58
},
59
{
60
"id": "markdown_latex_combined",
61
"configuration": "markdown-latex-combined-language-configuration.json",
62
"aliases": []
63
}
64
],
65
"grammars": [
66
{
67
"language": "tex",
68
"scopeName": "text.tex",
69
"path": "./syntaxes/TeX.tmLanguage.json"
70
},
71
{
72
"language": "latex",
73
"scopeName": "text.tex.latex",
74
"path": "./syntaxes/LaTeX.tmLanguage.json",
75
"embeddedLanguages": {
76
"source.cpp": "cpp_embedded_latex",
77
"source.css": "css",
78
"text.html": "html",
79
"source.java": "java",
80
"source.js": "javascript",
81
"source.julia": "julia",
82
"source.lua": "lua",
83
"source.python": "python",
84
"source.ruby": "ruby",
85
"source.ts": "typescript",
86
"text.xml": "xml",
87
"source.yaml": "yaml",
88
"meta.embedded.markdown_latex_combined": "markdown_latex_combined"
89
}
90
},
91
{
92
"language": "bibtex",
93
"scopeName": "text.bibtex",
94
"path": "./syntaxes/Bibtex.tmLanguage.json"
95
},
96
{
97
"language": "markdown_latex_combined",
98
"scopeName": "text.tex.markdown_latex_combined",
99
"path": "./syntaxes/markdown-latex-combined.tmLanguage.json"
100
},
101
{
102
"language": "cpp_embedded_latex",
103
"scopeName": "source.cpp.embedded.latex",
104
"path": "./syntaxes/cpp-grammar-bailout.tmLanguage.json"
105
}
106
]
107
},
108
"repository": {
109
"type": "git",
110
"url": "https://github.com/microsoft/vscode.git"
111
}
112
}
113
114