tm-grammars 1.30.7 → 1.30.8
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/README.md +1 -1
- package/grammars/asciidoc.json +2 -2
- package/index.js +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ import { grammars } from 'tm-grammars'
|
|
|
30
30
|
| `apl` | | [kimmolinna/vscode-apl-language](https://github.com/kimmolinna/vscode-apl-language/blob/13541242d9ffae225e89ebba23f9abaa4c60697e/syntaxes/apl.tmLanguage.json) | | | `html` `xml` `css` `javascript` `json` | 22.69 kB |
|
|
31
31
|
| `applescript` | | [textmate/applescript.tmbundle](https://github.com/textmate/applescript.tmbundle/blob/4947cad7494eba084c21cfe04689b4efce96700f/Syntaxes/AppleScript.tmLanguage) | | | | 27.80 kB |
|
|
32
32
|
| `ara` | | [ara-lang/highlighting](https://github.com/ara-lang/highlighting/blob/ed1dbedcf03d0b67207e41fe2e11218cc925dc0d/syntaxes/ara.json) | [Apache-2.0](https://raw.githubusercontent.com/ara-lang/highlighting/main/LICENSE-APACHE) | | | 5.91 kB |
|
|
33
|
-
| `asciidoc` | `adoc` | [asciidoctor/asciidoctor-vscode](https://github.com/asciidoctor/asciidoctor-vscode/blob/
|
|
33
|
+
| `asciidoc` | `adoc` | [asciidoctor/asciidoctor-vscode](https://github.com/asciidoctor/asciidoctor-vscode/blob/a946c878b12f6e5915d5d04e9b75953b417aa4c2/syntaxes/asciidoc.tmLanguage.json) | [NOASSERTION](https://raw.githubusercontent.com/asciidoctor/asciidoctor-vscode/master/LICENSE) | | `html` `yaml` `csv` `css` `ini` `java` `lua` `make` `perl` `r` `ruby` `php` `sql` `vb` `xml` `xsl` `bat` `clojure` `coffee` `c` `cpp` `diff` `docker` `git-commit` `git-rebase` `go` `groovy` `pug` `javascript` `json` `jsonc` `less` `objective-c` `swift` `scss` `raku` `powershell` `python` `julia` `regexp` `rust` `scala` `shellscript` `typescript` `tsx` `csharp` `fsharp` `dart` `handlebars` `markdown` `log` `erlang` `elixir` `latex` `bibtex` `abap` `rst` `haskell` `kotlin` | 121.23 kB |
|
|
34
34
|
| `asm` | | [13xforever/x86_64-assembly-vscode](https://github.com/13xforever/x86_64-assembly-vscode/blob/5c1958f4283d260f5dc88fa4f5f31c620e061a5a/syntaxes/language-x86_64-assembly.tmLanguage) | [MIT](https://raw.githubusercontent.com/13xforever/x86_64-assembly-vscode/master/LICENSE.txt) | | | 38.43 kB |
|
|
35
35
|
| `astro` | | [withastro/language-tools](https://github.com/withastro/language-tools/blob/8e55c37cbcf134dedf0068781245da5a9d46d081/packages/vscode/syntaxes/astro.tmLanguage.src.yaml) | [MIT](https://raw.githubusercontent.com/withastro/language-tools/main/LICENSE) | [GitHub Sponsors: **@withastro**](https://github.com/sponsors/withastro) [Open Collective: **astrodotbuild**](https://opencollective.com/astrodotbuild) [thanks.dev: **u/gh/withastro**](https://thanks.dev/d/u/gh/withastro) | `json` `javascript` `typescript` `stylus` `sass` `css` `scss` `less` `postcss` `tsx` | 22.87 kB |
|
|
36
36
|
| `awk` | | [luggage66/vscode-awk](https://github.com/luggage66/vscode-awk/blob/eff8c0f160ae16592c8d9963fd77046137fd2612/syntaxes/awk.tmLanguage) | [MIT](https://raw.githubusercontent.com/luggage66/vscode-awk/master/LICENSE.txt) | | | 5.16 kB |
|
package/grammars/asciidoc.json
CHANGED
|
@@ -1186,7 +1186,7 @@
|
|
|
1186
1186
|
"name": "markup.meta.attribute-list.asciidoc"
|
|
1187
1187
|
},
|
|
1188
1188
|
"2": {
|
|
1189
|
-
"name": "markup.raw.monospace.asciidoc"
|
|
1189
|
+
"name": "markup.inline.raw.monospace.asciidoc"
|
|
1190
1190
|
},
|
|
1191
1191
|
"3": {
|
|
1192
1192
|
"name": "punctuation.definition.asciidoc"
|
|
@@ -1204,7 +1204,7 @@
|
|
|
1204
1204
|
"name": "markup.meta.attribute-list.asciidoc"
|
|
1205
1205
|
},
|
|
1206
1206
|
"2": {
|
|
1207
|
-
"name": "markup.raw.monospace.asciidoc"
|
|
1207
|
+
"name": "markup.inline.raw.monospace.asciidoc"
|
|
1208
1208
|
},
|
|
1209
1209
|
"3": {
|
|
1210
1210
|
"name": "punctuation.definition.asciidoc"
|
package/index.js
CHANGED
|
@@ -191,7 +191,7 @@ export const grammars = [
|
|
|
191
191
|
aliases: [
|
|
192
192
|
'adoc',
|
|
193
193
|
],
|
|
194
|
-
byteSize:
|
|
194
|
+
byteSize: 124136,
|
|
195
195
|
categories: [
|
|
196
196
|
'markup',
|
|
197
197
|
],
|
|
@@ -259,15 +259,15 @@ export const grammars = [
|
|
|
259
259
|
],
|
|
260
260
|
funding: [
|
|
261
261
|
],
|
|
262
|
-
hash: '
|
|
263
|
-
lastUpdate: '
|
|
262
|
+
hash: 'XfAgexyRI2sjDnjAenVqiDrb5R-3Gm4XIUi-pOVWGfE',
|
|
263
|
+
lastUpdate: '2026-02-12T15:52:53Z',
|
|
264
264
|
license: 'NOASSERTION',
|
|
265
265
|
licenseUrl: 'https://raw.githubusercontent.com/asciidoctor/asciidoctor-vscode/master/LICENSE',
|
|
266
266
|
name: 'asciidoc',
|
|
267
267
|
scopeName: 'text.asciidoc',
|
|
268
|
-
sha: '
|
|
269
|
-
source: 'https://github.com/asciidoctor/asciidoctor-vscode/blob/
|
|
270
|
-
sourceApi: 'https://api.github.com/repos/asciidoctor/asciidoctor-vscode/contents/syntaxes/asciidoc.tmLanguage.json?ref=
|
|
268
|
+
sha: 'a946c878b12f6e5915d5d04e9b75953b417aa4c2',
|
|
269
|
+
source: 'https://github.com/asciidoctor/asciidoctor-vscode/blob/a946c878b12f6e5915d5d04e9b75953b417aa4c2/syntaxes/asciidoc.tmLanguage.json',
|
|
270
|
+
sourceApi: 'https://api.github.com/repos/asciidoctor/asciidoctor-vscode/contents/syntaxes/asciidoc.tmLanguage.json?ref=a946c878b12f6e5915d5d04e9b75953b417aa4c2',
|
|
271
271
|
},
|
|
272
272
|
{
|
|
273
273
|
byteSize: 39351,
|