Update grammars (#239483)

Fixes #239353
This commit is contained in:
Alex Ross
2025-02-04 10:29:01 +01:00
committed by GitHub
parent 01e36597fe
commit c9948b69ee
13 changed files with 1564 additions and 400 deletions

View File

@@ -4,7 +4,7 @@
"If you want to provide a fix or improvement, please create a pull request against the original repository.",
"Once accepted there, we are happy to receive an update request."
],
"version": "https://github.com/jlelong/vscode-latex-basics/commit/56e2dc967e6bafafc1acfeeb80af42b8328b021a",
"version": "https://github.com/jlelong/vscode-latex-basics/commit/dfa69a16a1154dbc820dc1111d72faa6954dd1e2",
"name": "Markdown",
"scopeName": "text.tex.markdown_latex_combined",
"patterns": [
@@ -2483,14 +2483,34 @@
"name": "meta.separator.markdown"
},
"frontMatter": {
"begin": "\\A-{3}\\s*$",
"contentName": "meta.embedded.block.frontmatter",
"begin": "\\A(?=(-{3,}))",
"end": "^ {,3}\\1-*[ \\t]*$|^[ \\t]*\\.{3}$",
"applyEndPatternLast": 1,
"endCaptures": {
"0": {
"name": "punctuation.definition.end.frontmatter"
}
},
"patterns": [
{
"include": "source.yaml"
"begin": "\\A(-{3,})(.*)$",
"while": "^(?! {,3}\\1-*[ \\t]*$|[ \\t]*\\.{3}$)",
"beginCaptures": {
"1": {
"name": "punctuation.definition.begin.frontmatter"
},
"2": {
"name": "comment.frontmatter"
}
},
"contentName": "meta.embedded.block.frontmatter",
"patterns": [
{
"include": "source.yaml"
}
]
}
],
"end": "(^|\\G)-{3}|\\.{3}\\s*$"
]
},
"table": {
"name": "markup.table.markdown",