astro-vscode 0.13.3 → 0.13.4
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/CHANGELOG.md +8 -0
- package/package.json +2 -2
- package/syntaxes/astro.tmLanguage.json +16 -12
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"color": "#FFBE2D",
|
|
9
9
|
"theme": "dark"
|
|
10
10
|
},
|
|
11
|
-
"version": "0.13.
|
|
11
|
+
"version": "0.13.4",
|
|
12
12
|
"author": "withastro",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"publisher": "astro-build",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"onLanguage:astro"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@astrojs/language-server": "0.13.
|
|
28
|
+
"@astrojs/language-server": "0.13.4",
|
|
29
29
|
"@astrojs/ts-plugin": "0.2.1",
|
|
30
30
|
"vscode-languageclient": "~7.0.0"
|
|
31
31
|
},
|
|
@@ -465,34 +465,38 @@
|
|
|
465
465
|
]
|
|
466
466
|
},
|
|
467
467
|
"astro:markdown": {
|
|
468
|
-
"begin": "(<)(Markdown)
|
|
468
|
+
"begin": "(<)(Markdown)",
|
|
469
|
+
"end": "(</)(Markdown)\\s*(>)|(/>)",
|
|
469
470
|
"beginCaptures": {
|
|
470
471
|
"1": {
|
|
471
|
-
"name": "punctuation.definition.tag.begin.
|
|
472
|
+
"name": "punctuation.definition.tag.begin.astro"
|
|
472
473
|
},
|
|
473
474
|
"2": {
|
|
474
|
-
"name": "entity.name.tag.
|
|
475
|
-
},
|
|
476
|
-
"3": {
|
|
477
|
-
"name": "punctuation.definition.tag.end.html"
|
|
475
|
+
"name": "entity.name.tag.astro support.class.component.astro"
|
|
478
476
|
}
|
|
479
477
|
},
|
|
480
|
-
"end": "(</)(Markdown)(>)",
|
|
481
478
|
"endCaptures": {
|
|
482
479
|
"1": {
|
|
483
|
-
"name": "punctuation.definition.tag.begin.
|
|
480
|
+
"name": "punctuation.definition.tag.begin.astro"
|
|
484
481
|
},
|
|
485
482
|
"2": {
|
|
486
|
-
"name": "entity.name.tag.
|
|
483
|
+
"name": "entity.name.tag.astro support.class.component.astro"
|
|
487
484
|
},
|
|
488
485
|
"3": {
|
|
489
|
-
"name": "punctuation.definition.tag.end.
|
|
486
|
+
"name": "punctuation.definition.tag.end.astro"
|
|
487
|
+
},
|
|
488
|
+
"4": {
|
|
489
|
+
"name": "punctuation.definition.tag.end.astro"
|
|
490
490
|
}
|
|
491
491
|
},
|
|
492
492
|
"patterns": [
|
|
493
493
|
{
|
|
494
|
-
"
|
|
495
|
-
|
|
494
|
+
"begin": "(?<=>)(?!</)",
|
|
495
|
+
"end": "(?=</)",
|
|
496
|
+
"contentName": "text.html.markdown",
|
|
497
|
+
"patterns": [{ "include": "text.html.markdown" }]
|
|
498
|
+
},
|
|
499
|
+
{ "include": "#html:tag-attributes" }
|
|
496
500
|
]
|
|
497
501
|
},
|
|
498
502
|
"frontmatter": {
|