mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 12:19:20 +00:00
@@ -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/microsoft/vscode-markdown-tm-grammar/commit/4504240cdb13a4640f64fc98a0adb858226a879e",
|
||||
"version": "https://github.com/microsoft/vscode-markdown-tm-grammar/commit/83a1940ab00b770392c3ae71b92e80cca2960613",
|
||||
"name": "Markdown",
|
||||
"scopeName": "text.html.markdown",
|
||||
"patterns": [
|
||||
@@ -165,6 +165,9 @@
|
||||
{
|
||||
"include": "#fenced_code_block_dart"
|
||||
},
|
||||
{
|
||||
"include": "#fenced_code_block_handlebars"
|
||||
},
|
||||
{
|
||||
"include": "#fenced_code_block_unknown"
|
||||
},
|
||||
@@ -186,7 +189,7 @@
|
||||
"begin": "(^|\\G)[ ]{0,3}(>) ?",
|
||||
"captures": {
|
||||
"2": {
|
||||
"name": "beginning.punctuation.definition.quote.markdown"
|
||||
"name": "punctuation.definition.quote.begin.markdown"
|
||||
}
|
||||
},
|
||||
"name": "markup.quote.markdown",
|
||||
@@ -1685,6 +1688,39 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
"fenced_code_block_handlebars": {
|
||||
"begin": "(^|\\G)(\\s*)(`{3,}|~{3,})\\s*(?i:(handlebars|hbs)(\\s+[^`~]*)?$)",
|
||||
"name": "markup.fenced_code.block.markdown",
|
||||
"end": "(^|\\G)(\\2|\\s{0,3})(\\3)\\s*$",
|
||||
"beginCaptures": {
|
||||
"3": {
|
||||
"name": "punctuation.definition.markdown"
|
||||
},
|
||||
"5": {
|
||||
"name": "fenced_code.block.language"
|
||||
},
|
||||
"6": {
|
||||
"name": "fenced_code.block.language.attributes"
|
||||
}
|
||||
},
|
||||
"endCaptures": {
|
||||
"3": {
|
||||
"name": "punctuation.definition.markdown"
|
||||
}
|
||||
},
|
||||
"patterns": [
|
||||
{
|
||||
"begin": "(^|\\G)(\\s*)(.*)",
|
||||
"while": "(^|\\G)(?!\\s*([`~]{3,})\\s*$)",
|
||||
"contentName": "meta.embedded.block.handlebars",
|
||||
"patterns": [
|
||||
{
|
||||
"include": "text.html.handlebars"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"fenced_code_block_unknown": {
|
||||
"begin": "(^|\\G)(\\s*)(`{3,}|~{3,})\\s*(?=([^`~]*)?$)",
|
||||
"beginCaptures": {
|
||||
@@ -1912,7 +1948,7 @@
|
||||
"name": "punctuation.definition.string.end.markdown"
|
||||
}
|
||||
},
|
||||
"match": "(?x)\n \\s* # Leading whitespace\n (\\[)(.+?)(\\])(:) # Reference name\n [ \\t]* # Optional whitespace\n (<?)(\\S+?)(>?) # The url\n [ \\t]* # Optional whitespace\n (?:\n ((\\().+?(\\))) # Match title in quotes…\n | ((\").+?(\")) # or in parens.\n )? # Title is optional\n \\s* # Optional whitespace\n $\n",
|
||||
"match": "(?x)\n \\s* # Leading whitespace\n (\\[)([\\w ]+?)(\\])(:) # Reference name\n [ \\t]* # Optional whitespace\n (<?)(\\S+?)(>?) # The url\n [ \\t]* # Optional whitespace\n (?:\n ((\\().+?(\\))) # Match title in quotes…\n | ((\").+?(\")) # or in parens.\n )? # Title is optional\n \\s* # Optional whitespace\n $\n",
|
||||
"name": "meta.link.reference.def.markdown"
|
||||
},
|
||||
"list_paragraph": {
|
||||
@@ -1934,10 +1970,10 @@
|
||||
"lists": {
|
||||
"patterns": [
|
||||
{
|
||||
"begin": "(^|\\G)([ ]{0,3})([*+-])([ ]{1,3}|\\t)",
|
||||
"begin": "(^|\\G)([ ]{0,3})([*+-])([ \\t])",
|
||||
"beginCaptures": {
|
||||
"3": {
|
||||
"name": "beginning.punctuation.definition.list.markdown"
|
||||
"name": "punctuation.definition.list.begin.markdown"
|
||||
}
|
||||
},
|
||||
"comment": "Currently does not support un-indented second lines.",
|
||||
@@ -1950,13 +1986,13 @@
|
||||
"include": "#list_paragraph"
|
||||
}
|
||||
],
|
||||
"while": "((^|\\G)([ ]{4}|\\t))|(^[ \\t]*$)"
|
||||
"while": "((^|\\G)([ ]{2,4}|\\t))|(^[ \\t]*$)"
|
||||
},
|
||||
{
|
||||
"begin": "(^|\\G)([ ]{0,3})([0-9]+\\.)([ ]{1,3}|\\t)",
|
||||
"begin": "(^|\\G)([ ]{0,3})([0-9]+\\.)([ \\t])",
|
||||
"beginCaptures": {
|
||||
"3": {
|
||||
"name": "beginning.punctuation.definition.list.markdown"
|
||||
"name": "punctuation.definition.list.begin.markdown"
|
||||
}
|
||||
},
|
||||
"name": "markup.list.numbered.markdown",
|
||||
@@ -1968,7 +2004,7 @@
|
||||
"include": "#list_paragraph"
|
||||
}
|
||||
],
|
||||
"while": "((^|\\G)([ ]{4}|\\t))|(^[ \\t]*$)"
|
||||
"while": "((^|\\G)([ ]{2,4}|\\t))|(^[ \\t]*$)"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -1994,7 +2030,7 @@
|
||||
"while": "(^|\\G)([ ]{4}|\\t)"
|
||||
},
|
||||
"separator": {
|
||||
"match": "(^|\\G)[ ]{0,3}([\\*\\-\\_])([ ]{0,2}\\2){2,}[ \\t]*$\\n?",
|
||||
"match": "(^|\\G)[ ]{0,3}([*-_])([ ]{0,2}\\2){2,}[ \\t]*$\\n?",
|
||||
"name": "meta.separator.markdown"
|
||||
}
|
||||
}
|
||||
@@ -2049,6 +2085,9 @@
|
||||
},
|
||||
{
|
||||
"include": "#link-ref-literal"
|
||||
},
|
||||
{
|
||||
"include": "#link-ref-shortcut"
|
||||
}
|
||||
],
|
||||
"repository": {
|
||||
@@ -2058,7 +2097,7 @@
|
||||
"name": "meta.other.valid-ampersand.markdown"
|
||||
},
|
||||
"bold": {
|
||||
"begin": "(?x)\n ((?<!\\w)\\*\\*\\b|\\b__)(?=\\S) # Open\n (?=\n (\n <[^>]*+> # HTML tags\n | (?<raw>`+)([^`]|(?!(?<!`)\\k<raw>(?!`))`)*+\\k<raw>\n # Raw\n | \\\\[\\\\`*_{}\\[\\]()#.!+\\->]?+ # Escapes\n | \\[\n (\n (?<square> # Named group\n [^\\[\\]\\\\] # Match most chars\n | \\\\. # Escaped chars\n | \\[ \\g<square>*+ \\] # Nested brackets\n )*+\n \\]\n (\n ( # Reference Link\n [ ]? # Optional space\n \\[[^\\]]*+\\] # Ref name\n )\n | ( # Inline Link\n \\( # Opening paren\n [ \\t]*+ # Optional whitespace\n <?(.*?)>? # URL\n [ \\t]*+ # Optional whitespace\n ( # Optional Title\n (?<title>['\"])\n (.*?)\n \\k<title>\n )?\n \\)\n )\n )\n )\n | (?!(?<=\\S)\\1). # Everything besides\n # style closer\n )++\n (?<=\\S)(?=__\\b|\\*\\*)\\1 # Close\n )\n",
|
||||
"begin": "(?x)\n (\\*\\*(?=\\w)|(?<!\\w)\\*\\*|(?<!\\w)\\b__)(?=\\S) # Open\n (?=\n (\n <[^>]*+> # HTML tags\n | (?<raw>`+)([^`]|(?!(?<!`)\\k<raw>(?!`))`)*+\\k<raw>\n # Raw\n | \\\\[\\\\`*_{}\\[\\]()#.!+\\->]?+ # Escapes\n | \\[\n (\n (?<square> # Named group\n [^\\[\\]\\\\] # Match most chars\n | \\\\. # Escaped chars\n | \\[ \\g<square>*+ \\] # Nested brackets\n )*+\n \\]\n (\n ( # Reference Link\n [ ]? # Optional space\n \\[[^\\]]*+\\] # Ref name\n )\n | ( # Inline Link\n \\( # Opening paren\n [ \\t]*+ # Optional whitespace\n <?(.*?)>? # URL\n [ \\t]*+ # Optional whitespace\n ( # Optional Title\n (?<title>['\"])\n (.*?)\n \\k<title>\n )?\n \\)\n )\n )\n )\n | (?!(?<=\\S)\\1). # Everything besides\n # style closer\n )++\n (?<=\\S)(?=__\\b|\\*\\*)\\1 # Close\n )\n",
|
||||
"captures": {
|
||||
"1": {
|
||||
"name": "punctuation.definition.bold.markdown"
|
||||
@@ -2115,6 +2154,9 @@
|
||||
},
|
||||
{
|
||||
"include": "#link-ref"
|
||||
},
|
||||
{
|
||||
"include": "#link-ref-shortcut"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -2200,7 +2242,7 @@
|
||||
"name": "meta.image.reference.markdown"
|
||||
},
|
||||
"italic": {
|
||||
"begin": "(?x) (\\*\\b|\\b_)(?=\\S) # Open\n (?=\n (\n <[^>]*+> # HTML tags\n | (?<raw>`+)([^`]|(?!(?<!`)\\k<raw>(?!`))`)*+\\k<raw>\n # Raw\n | \\\\[\\\\`*_{}\\[\\]()#.!+\\->]?+ # Escapes\n | \\[\n (\n (?<square> # Named group\n [^\\[\\]\\\\] # Match most chars\n | \\\\. # Escaped chars\n | \\[ \\g<square>*+ \\] # Nested brackets\n )*+\n \\]\n (\n ( # Reference Link\n [ ]? # Optional space\n \\[[^\\]]*+\\] # Ref name\n )\n | ( # Inline Link\n \\( # Opening paren\n [ \\t]*+ # Optional whtiespace\n <?(.*?)>? # URL\n [ \\t]*+ # Optional whtiespace\n ( # Optional Title\n (?<title>['\"])\n (.*?)\n \\k<title>\n )?\n \\)\n )\n )\n )\n | \\1\\1 # Must be bold closer\n | (?!(?<=\\S)\\1). # Everything besides\n # style closer\n )++\n (?<=\\S)(?=_\\b|\\*)\\1 # Close\n )\n",
|
||||
"begin": "(?x) (\\*(?=\\w)|(?<!\\w)\\*|(?<!\\w)\\b_)(?=\\S) # Open\n (?=\n (\n <[^>]*+> # HTML tags\n | (?<raw>`+)([^`]|(?!(?<!`)\\k<raw>(?!`))`)*+\\k<raw>\n # Raw\n | \\\\[\\\\`*_{}\\[\\]()#.!+\\->]?+ # Escapes\n | \\[\n (\n (?<square> # Named group\n [^\\[\\]\\\\] # Match most chars\n | \\\\. # Escaped chars\n | \\[ \\g<square>*+ \\] # Nested brackets\n )*+\n \\]\n (\n ( # Reference Link\n [ ]? # Optional space\n \\[[^\\]]*+\\] # Ref name\n )\n | ( # Inline Link\n \\( # Opening paren\n [ \\t]*+ # Optional whtiespace\n <?(.*?)>? # URL\n [ \\t]*+ # Optional whtiespace\n ( # Optional Title\n (?<title>['\"])\n (.*?)\n \\k<title>\n )?\n \\)\n )\n )\n )\n | \\1\\1 # Must be bold closer\n | (?!(?<=\\S)\\1). # Everything besides\n # style closer\n )++\n (?<=\\S)(?=_\\b|\\*)\\1 # Close\n )\n",
|
||||
"captures": {
|
||||
"1": {
|
||||
"name": "punctuation.definition.italic.markdown"
|
||||
@@ -2254,6 +2296,9 @@
|
||||
},
|
||||
{
|
||||
"include": "#link-ref"
|
||||
},
|
||||
{
|
||||
"include": "#link-ref-shortcut"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -2307,32 +2352,32 @@
|
||||
"7": {
|
||||
"name": "markup.underline.link.markdown"
|
||||
},
|
||||
"8": {
|
||||
"9": {
|
||||
"name": "punctuation.definition.link.markdown"
|
||||
},
|
||||
"9": {
|
||||
"name": "string.other.link.description.title.markdown"
|
||||
},
|
||||
"10": {
|
||||
"name": "punctuation.definition.string.begin.markdown"
|
||||
"name": "string.other.link.description.title.markdown"
|
||||
},
|
||||
"11": {
|
||||
"name": "punctuation.definition.string.end.markdown"
|
||||
},
|
||||
"12": {
|
||||
"name": "string.other.link.description.title.markdown"
|
||||
},
|
||||
"13": {
|
||||
"name": "punctuation.definition.string.begin.markdown"
|
||||
},
|
||||
"14": {
|
||||
"12": {
|
||||
"name": "punctuation.definition.string.end.markdown"
|
||||
},
|
||||
"13": {
|
||||
"name": "string.other.link.description.title.markdown"
|
||||
},
|
||||
"14": {
|
||||
"name": "punctuation.definition.string.begin.markdown"
|
||||
},
|
||||
"15": {
|
||||
"name": "punctuation.definition.string.end.markdown"
|
||||
},
|
||||
"16": {
|
||||
"name": "punctuation.definition.metadata.markdown"
|
||||
}
|
||||
},
|
||||
"match": "(?x)\n (\\[)((?<square>[^\\[\\]\\\\]|\\\\.|\\[\\g<square>*+\\])*+)(\\])\n # Match the link text.\n (\\() # Opening paren for url\n (<?)(.*?)(>?) # The url\n [ \\t]* # Optional whitespace\n (?:\n ((\\().+?(\\))) # Match title in parens…\n | ((\").+?(\")) # or in quotes.\n )? # Title is optional\n \\s* # Optional whitespace\n (\\))\n",
|
||||
"match": "(?x)\n (\\[)((?<square>[^\\[\\]\\\\]|\\\\.|\\[\\g<square>*+\\])*+)(\\])\n # Match the link text.\n (\\() # Opening paren for url\n (<?)((?<url>(?>[^\\s()]+)|\\(\\g<url>*\\))*)(>?) # The url\n [ \\t]* # Optional whitespace\n (?:\n ((\\().+?(\\))) # Match title in parens…\n | ((\").+?(\")) # or in quotes.\n )? # Title is optional\n \\s* # Optional whitespace\n (\\))\n",
|
||||
"name": "meta.link.inline.markdown"
|
||||
},
|
||||
"link-ref": {
|
||||
@@ -2380,6 +2425,21 @@
|
||||
"match": "(\\[)((?<square>[^\\[\\]\\\\]|\\\\.|\\[\\g<square>*+\\])*+)(\\])[ ]?(\\[)(\\])",
|
||||
"name": "meta.link.reference.literal.markdown"
|
||||
},
|
||||
"link-ref-shortcut": {
|
||||
"captures": {
|
||||
"1": {
|
||||
"name": "punctuation.definition.string.begin.markdown"
|
||||
},
|
||||
"2": {
|
||||
"name": "string.other.link.title.markdown"
|
||||
},
|
||||
"4": {
|
||||
"name": "punctuation.definition.string.end.markdown"
|
||||
}
|
||||
},
|
||||
"match": "(\\[)(\\S+?)(\\])",
|
||||
"name": "meta.link.reference.markdown"
|
||||
},
|
||||
"raw": {
|
||||
"captures": {
|
||||
"1": {
|
||||
|
||||
@@ -1211,12 +1211,12 @@
|
||||
},
|
||||
{
|
||||
"c": "*",
|
||||
"t": "text.html.markdown markup.list.unnumbered.markdown beginning.punctuation.definition.list.markdown",
|
||||
"t": "text.html.markdown markup.list.unnumbered.markdown punctuation.definition.list.begin.markdown",
|
||||
"r": {
|
||||
"dark_plus": "beginning.punctuation.definition.list.markdown: #6796E6",
|
||||
"light_plus": "beginning.punctuation.definition.list.markdown: #0451A5",
|
||||
"dark_vs": "beginning.punctuation.definition.list.markdown: #6796E6",
|
||||
"light_vs": "beginning.punctuation.definition.list.markdown: #0451A5",
|
||||
"dark_plus": "punctuation.definition.list.begin.markdown: #6796E6",
|
||||
"light_plus": "punctuation.definition.list.begin.markdown: #0451A5",
|
||||
"dark_vs": "punctuation.definition.list.begin.markdown: #6796E6",
|
||||
"light_vs": "punctuation.definition.list.begin.markdown: #0451A5",
|
||||
"hc_black": "default: #FFFFFF"
|
||||
}
|
||||
},
|
||||
@@ -1244,12 +1244,12 @@
|
||||
},
|
||||
{
|
||||
"c": "-",
|
||||
"t": "text.html.markdown markup.list.unnumbered.markdown beginning.punctuation.definition.list.markdown",
|
||||
"t": "text.html.markdown markup.list.unnumbered.markdown punctuation.definition.list.begin.markdown",
|
||||
"r": {
|
||||
"dark_plus": "beginning.punctuation.definition.list.markdown: #6796E6",
|
||||
"light_plus": "beginning.punctuation.definition.list.markdown: #0451A5",
|
||||
"dark_vs": "beginning.punctuation.definition.list.markdown: #6796E6",
|
||||
"light_vs": "beginning.punctuation.definition.list.markdown: #0451A5",
|
||||
"dark_plus": "punctuation.definition.list.begin.markdown: #6796E6",
|
||||
"light_plus": "punctuation.definition.list.begin.markdown: #0451A5",
|
||||
"dark_vs": "punctuation.definition.list.begin.markdown: #6796E6",
|
||||
"light_vs": "punctuation.definition.list.begin.markdown: #0451A5",
|
||||
"hc_black": "default: #FFFFFF"
|
||||
}
|
||||
},
|
||||
@@ -1277,12 +1277,12 @@
|
||||
},
|
||||
{
|
||||
"c": "+",
|
||||
"t": "text.html.markdown markup.list.unnumbered.markdown beginning.punctuation.definition.list.markdown",
|
||||
"t": "text.html.markdown markup.list.unnumbered.markdown punctuation.definition.list.begin.markdown",
|
||||
"r": {
|
||||
"dark_plus": "beginning.punctuation.definition.list.markdown: #6796E6",
|
||||
"light_plus": "beginning.punctuation.definition.list.markdown: #0451A5",
|
||||
"dark_vs": "beginning.punctuation.definition.list.markdown: #6796E6",
|
||||
"light_vs": "beginning.punctuation.definition.list.markdown: #0451A5",
|
||||
"dark_plus": "punctuation.definition.list.begin.markdown: #6796E6",
|
||||
"light_plus": "punctuation.definition.list.begin.markdown: #0451A5",
|
||||
"dark_vs": "punctuation.definition.list.begin.markdown: #6796E6",
|
||||
"light_vs": "punctuation.definition.list.begin.markdown: #0451A5",
|
||||
"hc_black": "default: #FFFFFF"
|
||||
}
|
||||
},
|
||||
@@ -1321,12 +1321,12 @@
|
||||
},
|
||||
{
|
||||
"c": "+",
|
||||
"t": "text.html.markdown markup.list.unnumbered.markdown markup.list.unnumbered.markdown beginning.punctuation.definition.list.markdown",
|
||||
"t": "text.html.markdown markup.list.unnumbered.markdown markup.list.unnumbered.markdown punctuation.definition.list.begin.markdown",
|
||||
"r": {
|
||||
"dark_plus": "beginning.punctuation.definition.list.markdown: #6796E6",
|
||||
"light_plus": "beginning.punctuation.definition.list.markdown: #0451A5",
|
||||
"dark_vs": "beginning.punctuation.definition.list.markdown: #6796E6",
|
||||
"light_vs": "beginning.punctuation.definition.list.markdown: #0451A5",
|
||||
"dark_plus": "punctuation.definition.list.begin.markdown: #6796E6",
|
||||
"light_plus": "punctuation.definition.list.begin.markdown: #0451A5",
|
||||
"dark_vs": "punctuation.definition.list.begin.markdown: #6796E6",
|
||||
"light_vs": "punctuation.definition.list.begin.markdown: #0451A5",
|
||||
"hc_black": "default: #FFFFFF"
|
||||
}
|
||||
},
|
||||
@@ -1596,12 +1596,12 @@
|
||||
},
|
||||
{
|
||||
"c": ">",
|
||||
"t": "text.html.markdown markup.quote.markdown beginning.punctuation.definition.quote.markdown",
|
||||
"t": "text.html.markdown markup.quote.markdown punctuation.definition.quote.begin.markdown",
|
||||
"r": {
|
||||
"dark_plus": "beginning.punctuation.definition.quote.markdown: #6A9955",
|
||||
"light_plus": "beginning.punctuation.definition.quote.markdown: #0451A5",
|
||||
"dark_vs": "beginning.punctuation.definition.quote.markdown: #6A9955",
|
||||
"light_vs": "beginning.punctuation.definition.quote.markdown: #0451A5",
|
||||
"dark_plus": "punctuation.definition.quote.begin.markdown: #6A9955",
|
||||
"light_plus": "punctuation.definition.quote.begin.markdown: #0451A5",
|
||||
"dark_vs": "punctuation.definition.quote.begin.markdown: #6A9955",
|
||||
"light_vs": "punctuation.definition.quote.begin.markdown: #0451A5",
|
||||
"hc_black": "default: #FFFFFF"
|
||||
}
|
||||
},
|
||||
@@ -1629,23 +1629,23 @@
|
||||
},
|
||||
{
|
||||
"c": ">",
|
||||
"t": "text.html.markdown markup.quote.markdown beginning.punctuation.definition.quote.markdown",
|
||||
"t": "text.html.markdown markup.quote.markdown punctuation.definition.quote.begin.markdown",
|
||||
"r": {
|
||||
"dark_plus": "beginning.punctuation.definition.quote.markdown: #6A9955",
|
||||
"light_plus": "beginning.punctuation.definition.quote.markdown: #0451A5",
|
||||
"dark_vs": "beginning.punctuation.definition.quote.markdown: #6A9955",
|
||||
"light_vs": "beginning.punctuation.definition.quote.markdown: #0451A5",
|
||||
"dark_plus": "punctuation.definition.quote.begin.markdown: #6A9955",
|
||||
"light_plus": "punctuation.definition.quote.begin.markdown: #0451A5",
|
||||
"dark_vs": "punctuation.definition.quote.begin.markdown: #6A9955",
|
||||
"light_vs": "punctuation.definition.quote.begin.markdown: #0451A5",
|
||||
"hc_black": "default: #FFFFFF"
|
||||
}
|
||||
},
|
||||
{
|
||||
"c": ">",
|
||||
"t": "text.html.markdown markup.quote.markdown markup.quote.markdown beginning.punctuation.definition.quote.markdown",
|
||||
"t": "text.html.markdown markup.quote.markdown markup.quote.markdown punctuation.definition.quote.begin.markdown",
|
||||
"r": {
|
||||
"dark_plus": "beginning.punctuation.definition.quote.markdown: #6A9955",
|
||||
"light_plus": "beginning.punctuation.definition.quote.markdown: #0451A5",
|
||||
"dark_vs": "beginning.punctuation.definition.quote.markdown: #6A9955",
|
||||
"light_vs": "beginning.punctuation.definition.quote.markdown: #0451A5",
|
||||
"dark_plus": "punctuation.definition.quote.begin.markdown: #6A9955",
|
||||
"light_plus": "punctuation.definition.quote.begin.markdown: #0451A5",
|
||||
"dark_vs": "punctuation.definition.quote.begin.markdown: #6A9955",
|
||||
"light_vs": "punctuation.definition.quote.begin.markdown: #0451A5",
|
||||
"hc_black": "default: #FFFFFF"
|
||||
}
|
||||
},
|
||||
@@ -1673,12 +1673,12 @@
|
||||
},
|
||||
{
|
||||
"c": "1.",
|
||||
"t": "text.html.markdown markup.list.numbered.markdown beginning.punctuation.definition.list.markdown",
|
||||
"t": "text.html.markdown markup.list.numbered.markdown punctuation.definition.list.begin.markdown",
|
||||
"r": {
|
||||
"dark_plus": "beginning.punctuation.definition.list.markdown: #6796E6",
|
||||
"light_plus": "beginning.punctuation.definition.list.markdown: #0451A5",
|
||||
"dark_vs": "beginning.punctuation.definition.list.markdown: #6796E6",
|
||||
"light_vs": "beginning.punctuation.definition.list.markdown: #0451A5",
|
||||
"dark_plus": "punctuation.definition.list.begin.markdown: #6796E6",
|
||||
"light_plus": "punctuation.definition.list.begin.markdown: #0451A5",
|
||||
"dark_vs": "punctuation.definition.list.begin.markdown: #6796E6",
|
||||
"light_vs": "punctuation.definition.list.begin.markdown: #0451A5",
|
||||
"hc_black": "default: #FFFFFF"
|
||||
}
|
||||
},
|
||||
@@ -1717,12 +1717,12 @@
|
||||
},
|
||||
{
|
||||
"c": ">",
|
||||
"t": "text.html.markdown markup.list.numbered.markdown markup.quote.markdown beginning.punctuation.definition.quote.markdown",
|
||||
"t": "text.html.markdown markup.list.numbered.markdown markup.quote.markdown punctuation.definition.quote.begin.markdown",
|
||||
"r": {
|
||||
"dark_plus": "beginning.punctuation.definition.quote.markdown: #6A9955",
|
||||
"light_plus": "beginning.punctuation.definition.quote.markdown: #0451A5",
|
||||
"dark_vs": "beginning.punctuation.definition.quote.markdown: #6A9955",
|
||||
"light_vs": "beginning.punctuation.definition.quote.markdown: #0451A5",
|
||||
"dark_plus": "punctuation.definition.quote.begin.markdown: #6A9955",
|
||||
"light_plus": "punctuation.definition.quote.begin.markdown: #0451A5",
|
||||
"dark_vs": "punctuation.definition.quote.begin.markdown: #6A9955",
|
||||
"light_vs": "punctuation.definition.quote.begin.markdown: #0451A5",
|
||||
"hc_black": "default: #FFFFFF"
|
||||
}
|
||||
},
|
||||
@@ -1750,12 +1750,12 @@
|
||||
},
|
||||
{
|
||||
"c": "2.",
|
||||
"t": "text.html.markdown markup.list.numbered.markdown beginning.punctuation.definition.list.markdown",
|
||||
"t": "text.html.markdown markup.list.numbered.markdown punctuation.definition.list.begin.markdown",
|
||||
"r": {
|
||||
"dark_plus": "beginning.punctuation.definition.list.markdown: #6796E6",
|
||||
"light_plus": "beginning.punctuation.definition.list.markdown: #0451A5",
|
||||
"dark_vs": "beginning.punctuation.definition.list.markdown: #6796E6",
|
||||
"light_vs": "beginning.punctuation.definition.list.markdown: #0451A5",
|
||||
"dark_plus": "punctuation.definition.list.begin.markdown: #6796E6",
|
||||
"light_plus": "punctuation.definition.list.begin.markdown: #0451A5",
|
||||
"dark_vs": "punctuation.definition.list.begin.markdown: #6796E6",
|
||||
"light_vs": "punctuation.definition.list.begin.markdown: #0451A5",
|
||||
"hc_black": "default: #FFFFFF"
|
||||
}
|
||||
},
|
||||
@@ -1783,12 +1783,12 @@
|
||||
},
|
||||
{
|
||||
"c": "3.",
|
||||
"t": "text.html.markdown markup.list.numbered.markdown beginning.punctuation.definition.list.markdown",
|
||||
"t": "text.html.markdown markup.list.numbered.markdown punctuation.definition.list.begin.markdown",
|
||||
"r": {
|
||||
"dark_plus": "beginning.punctuation.definition.list.markdown: #6796E6",
|
||||
"light_plus": "beginning.punctuation.definition.list.markdown: #0451A5",
|
||||
"dark_vs": "beginning.punctuation.definition.list.markdown: #6796E6",
|
||||
"light_vs": "beginning.punctuation.definition.list.markdown: #0451A5",
|
||||
"dark_plus": "punctuation.definition.list.begin.markdown: #6796E6",
|
||||
"light_plus": "punctuation.definition.list.begin.markdown: #0451A5",
|
||||
"dark_vs": "punctuation.definition.list.begin.markdown: #6796E6",
|
||||
"light_vs": "punctuation.definition.list.begin.markdown: #0451A5",
|
||||
"hc_black": "default: #FFFFFF"
|
||||
}
|
||||
},
|
||||
@@ -2245,12 +2245,12 @@
|
||||
},
|
||||
{
|
||||
"c": "*",
|
||||
"t": "text.html.markdown markup.list.unnumbered.markdown beginning.punctuation.definition.list.markdown",
|
||||
"t": "text.html.markdown markup.list.unnumbered.markdown punctuation.definition.list.begin.markdown",
|
||||
"r": {
|
||||
"dark_plus": "beginning.punctuation.definition.list.markdown: #6796E6",
|
||||
"light_plus": "beginning.punctuation.definition.list.markdown: #0451A5",
|
||||
"dark_vs": "beginning.punctuation.definition.list.markdown: #6796E6",
|
||||
"light_vs": "beginning.punctuation.definition.list.markdown: #0451A5",
|
||||
"dark_plus": "punctuation.definition.list.begin.markdown: #6796E6",
|
||||
"light_plus": "punctuation.definition.list.begin.markdown: #0451A5",
|
||||
"dark_vs": "punctuation.definition.list.begin.markdown: #6796E6",
|
||||
"light_vs": "punctuation.definition.list.begin.markdown: #0451A5",
|
||||
"hc_black": "default: #FFFFFF"
|
||||
}
|
||||
},
|
||||
@@ -2278,12 +2278,12 @@
|
||||
},
|
||||
{
|
||||
"c": "*",
|
||||
"t": "text.html.markdown markup.list.unnumbered.markdown beginning.punctuation.definition.list.markdown",
|
||||
"t": "text.html.markdown markup.list.unnumbered.markdown punctuation.definition.list.begin.markdown",
|
||||
"r": {
|
||||
"dark_plus": "beginning.punctuation.definition.list.markdown: #6796E6",
|
||||
"light_plus": "beginning.punctuation.definition.list.markdown: #0451A5",
|
||||
"dark_vs": "beginning.punctuation.definition.list.markdown: #6796E6",
|
||||
"light_vs": "beginning.punctuation.definition.list.markdown: #0451A5",
|
||||
"dark_plus": "punctuation.definition.list.begin.markdown: #6796E6",
|
||||
"light_plus": "punctuation.definition.list.begin.markdown: #0451A5",
|
||||
"dark_vs": "punctuation.definition.list.begin.markdown: #6796E6",
|
||||
"light_vs": "punctuation.definition.list.begin.markdown: #0451A5",
|
||||
"hc_black": "default: #FFFFFF"
|
||||
}
|
||||
},
|
||||
@@ -2421,12 +2421,12 @@
|
||||
},
|
||||
{
|
||||
"c": "*",
|
||||
"t": "text.html.markdown markup.list.unnumbered.markdown beginning.punctuation.definition.list.markdown",
|
||||
"t": "text.html.markdown markup.list.unnumbered.markdown punctuation.definition.list.begin.markdown",
|
||||
"r": {
|
||||
"dark_plus": "beginning.punctuation.definition.list.markdown: #6796E6",
|
||||
"light_plus": "beginning.punctuation.definition.list.markdown: #0451A5",
|
||||
"dark_vs": "beginning.punctuation.definition.list.markdown: #6796E6",
|
||||
"light_vs": "beginning.punctuation.definition.list.markdown: #0451A5",
|
||||
"dark_plus": "punctuation.definition.list.begin.markdown: #6796E6",
|
||||
"light_plus": "punctuation.definition.list.begin.markdown: #0451A5",
|
||||
"dark_vs": "punctuation.definition.list.begin.markdown: #6796E6",
|
||||
"light_vs": "punctuation.definition.list.begin.markdown: #0451A5",
|
||||
"hc_black": "default: #FFFFFF"
|
||||
}
|
||||
},
|
||||
@@ -2454,12 +2454,12 @@
|
||||
},
|
||||
{
|
||||
"c": "*",
|
||||
"t": "text.html.markdown markup.list.unnumbered.markdown beginning.punctuation.definition.list.markdown",
|
||||
"t": "text.html.markdown markup.list.unnumbered.markdown punctuation.definition.list.begin.markdown",
|
||||
"r": {
|
||||
"dark_plus": "beginning.punctuation.definition.list.markdown: #6796E6",
|
||||
"light_plus": "beginning.punctuation.definition.list.markdown: #0451A5",
|
||||
"dark_vs": "beginning.punctuation.definition.list.markdown: #6796E6",
|
||||
"light_vs": "beginning.punctuation.definition.list.markdown: #0451A5",
|
||||
"dark_plus": "punctuation.definition.list.begin.markdown: #6796E6",
|
||||
"light_plus": "punctuation.definition.list.begin.markdown: #0451A5",
|
||||
"dark_vs": "punctuation.definition.list.begin.markdown: #6796E6",
|
||||
"light_vs": "punctuation.definition.list.begin.markdown: #0451A5",
|
||||
"hc_black": "default: #FFFFFF"
|
||||
}
|
||||
},
|
||||
@@ -2486,7 +2486,51 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"c": "*[ABBR]: Markdown plus abbreviations (produces an ",
|
||||
"c": "*",
|
||||
"t": "text.html.markdown meta.paragraph.markdown",
|
||||
"r": {
|
||||
"dark_plus": "default: #D4D4D4",
|
||||
"light_plus": "default: #000000",
|
||||
"dark_vs": "default: #D4D4D4",
|
||||
"light_vs": "default: #000000",
|
||||
"hc_black": "default: #FFFFFF"
|
||||
}
|
||||
},
|
||||
{
|
||||
"c": "[",
|
||||
"t": "text.html.markdown meta.paragraph.markdown meta.link.reference.markdown punctuation.definition.string.begin.markdown",
|
||||
"r": {
|
||||
"dark_plus": "default: #D4D4D4",
|
||||
"light_plus": "default: #000000",
|
||||
"dark_vs": "default: #D4D4D4",
|
||||
"light_vs": "default: #000000",
|
||||
"hc_black": "default: #FFFFFF"
|
||||
}
|
||||
},
|
||||
{
|
||||
"c": "ABBR",
|
||||
"t": "text.html.markdown meta.paragraph.markdown meta.link.reference.markdown string.other.link.title.markdown",
|
||||
"r": {
|
||||
"dark_plus": "string: #CE9178",
|
||||
"light_plus": "string: #A31515",
|
||||
"dark_vs": "string: #CE9178",
|
||||
"light_vs": "string: #A31515",
|
||||
"hc_black": "string: #CE9178"
|
||||
}
|
||||
},
|
||||
{
|
||||
"c": "]",
|
||||
"t": "text.html.markdown meta.paragraph.markdown meta.link.reference.markdown",
|
||||
"r": {
|
||||
"dark_plus": "default: #D4D4D4",
|
||||
"light_plus": "default: #000000",
|
||||
"dark_vs": "default: #D4D4D4",
|
||||
"light_vs": "default: #000000",
|
||||
"hc_black": "default: #FFFFFF"
|
||||
}
|
||||
},
|
||||
{
|
||||
"c": ": Markdown plus abbreviations (produces an ",
|
||||
"t": "text.html.markdown meta.paragraph.markdown",
|
||||
"r": {
|
||||
"dark_plus": "default: #D4D4D4",
|
||||
|
||||
Reference in New Issue
Block a user