| 1 |
{ |
| 2 |
"$schema": "https://raw.githubusercontent.com/martinring/tmlanguage/master/tmlanguage.json", |
| 3 |
"name": "mdc", |
| 4 |
"injectionSelector": "L:text.html.markdown", |
| 5 |
"scopeName": "text.markdown.mdc", |
| 6 |
"patterns": [ |
| 7 |
{ |
| 8 |
"include": "#component_block" |
| 9 |
}, |
| 10 |
{ |
| 11 |
"include": "#inline" |
| 12 |
} |
| 13 |
], |
| 14 |
"repository": { |
| 15 |
"block": { |
| 16 |
"patterns": [ |
| 17 |
{ |
| 18 |
"include": "#component_block" |
| 19 |
}, |
| 20 |
{ |
| 21 |
"include": "text.html.markdown#separator" |
| 22 |
}, |
| 23 |
{ |
| 24 |
"include": "#heading" |
| 25 |
}, |
| 26 |
{ |
| 27 |
"include": "#blockquote" |
| 28 |
}, |
| 29 |
{ |
| 30 |
"include": "#lists" |
| 31 |
}, |
| 32 |
{ |
| 33 |
"include": "text.html.markdown#fenced_code_block" |
| 34 |
}, |
| 35 |
{ |
| 36 |
"include": "text.html.markdown#link-def" |
| 37 |
}, |
| 38 |
{ |
| 39 |
"include": "text.html.markdown#html" |
| 40 |
}, |
| 41 |
{ |
| 42 |
"include": "#paragraph" |
| 43 |
} |
| 44 |
] |
| 45 |
}, |
| 46 |
"inline": { |
| 47 |
"patterns": [ |
| 48 |
{ |
| 49 |
"include": "#component_inline" |
| 50 |
}, |
| 51 |
{ |
| 52 |
"include": "#span" |
| 53 |
}, |
| 54 |
{ |
| 55 |
"include": "#attributes" |
| 56 |
} |
| 57 |
] |
| 58 |
}, |
| 59 |
"span": { |
| 60 |
"match": "(?x)\n (\\[) # Open\n ([^]]*)\n (\\])\n ( # attributes\n ({)\n ([^{]*)\n (})\n )?\n \\s", |
| 61 |
"name": "span.component.mdc", |
| 62 |
"captures": { |
| 63 |
"1": { |
| 64 |
"name": "punctuation.definition.tag.start.component" |
| 65 |
}, |
| 66 |
"2": { |
| 67 |
"name": "string.other.link.description.title.markdown" |
| 68 |
}, |
| 69 |
"3": { |
| 70 |
"name": "punctuation.definition.tag.end.component" |
| 71 |
}, |
| 72 |
"4": { |
| 73 |
"patterns": [ |
| 74 |
{ |
| 75 |
"include": "#attributes" |
| 76 |
} |
| 77 |
] |
| 78 |
} |
| 79 |
} |
| 80 |
}, |
| 81 |
"attributes": { |
| 82 |
"match": "(?x)( # attributes\n ({)\n ([^{]*)\n (})\n )", |
| 83 |
"name": "attributes.mdc", |
| 84 |
"captures": { |
| 85 |
"1": { |
| 86 |
"name": "punctuation.definition.tag.start.component" |
| 87 |
}, |
| 88 |
"3": { |
| 89 |
"patterns": [ |
| 90 |
{ |
| 91 |
"include": "#attribute" |
| 92 |
} |
| 93 |
] |
| 94 |
}, |
| 95 |
"4": { |
| 96 |
"name": "punctuation.definition.tag.end.component" |
| 97 |
} |
| 98 |
} |
| 99 |
}, |
| 100 |
"component_inline": { |
| 101 |
"match": "(?x)\n (^|\\G|\\s+)\n (:) # component colon\n (?i: # component name\n (\\w[\\w\\d-]*)\n )\n (\n ({[^}]*}) # attributes\n (\\[[^\\]]*\\])? # slot\n # reverse order\n | (\\[[^\\]]*\\]) # slot\n ({[^}]*})? # attributes\n )?\n \\s", |
| 102 |
"name": "inline.component.mdc", |
| 103 |
"captures": { |
| 104 |
"2": { |
| 105 |
"name": "punctuation.definition.tag.start.component" |
| 106 |
}, |
| 107 |
"3": { |
| 108 |
"name": "entity.name.tag.component" |
| 109 |
}, |
| 110 |
"5": { |
| 111 |
"patterns": [ |
| 112 |
{ |
| 113 |
"include": "#attributes" |
| 114 |
} |
| 115 |
] |
| 116 |
}, |
| 117 |
"6": { |
| 118 |
"patterns": [ |
| 119 |
{ |
| 120 |
"include": "#span" |
| 121 |
} |
| 122 |
] |
| 123 |
}, |
| 124 |
"7": { |
| 125 |
"patterns": [ |
| 126 |
{ |
| 127 |
"include": "#span" |
| 128 |
} |
| 129 |
] |
| 130 |
}, |
| 131 |
"8": { |
| 132 |
"patterns": [ |
| 133 |
{ |
| 134 |
"include": "#attributes" |
| 135 |
} |
| 136 |
] |
| 137 |
} |
| 138 |
} |
| 139 |
}, |
| 140 |
"component_block": { |
| 141 |
"begin": "(?x)\n (^|\\G)(\\s*)\n (:{2,}) # component colons\n (?i:\n (\\w[\\w\\d-]+) # component name\n ( # folowing spaces or attributes\n \\s*\n | \\s*({[^{]*})\n )\n $\n )", |
| 142 |
"name": "block.component.mdc", |
| 143 |
"end": "(^|\\G)(\\2)(\\3)\\s*$", |
| 144 |
"beginCaptures": { |
| 145 |
"3": { |
| 146 |
"name": "punctuation.definition.tag.start.mdc" |
| 147 |
}, |
| 148 |
"4": { |
| 149 |
"name": "entity.name.tag.mdc" |
| 150 |
}, |
| 151 |
"5": { |
| 152 |
"patterns": [ |
| 153 |
{ |
| 154 |
"include": "#attributes" |
| 155 |
} |
| 156 |
] |
| 157 |
} |
| 158 |
}, |
| 159 |
"endCaptures": { |
| 160 |
"3": { |
| 161 |
"name": "punctuation.definition.tag.end.mdc" |
| 162 |
} |
| 163 |
}, |
| 164 |
"patterns": [ |
| 165 |
{ |
| 166 |
"match": "(^|\\G)\\s*([:]{2,})$", |
| 167 |
"captures": { |
| 168 |
"2": { |
| 169 |
"name": "punctuation.definition.tag.end.mdc" |
| 170 |
} |
| 171 |
} |
| 172 |
}, |
| 173 |
{ |
| 174 |
"include": "#content" |
| 175 |
} |
| 176 |
] |
| 177 |
}, |
| 178 |
"content": { |
| 179 |
"begin": "(^|\\G)(\\s*)(.*)", |
| 180 |
"while": "(^|\\G)(?!\\s*([:]{2,})\\s*$)", |
| 181 |
"contentName": "meta.embedded.block.mdc", |
| 182 |
"patterns": [ |
| 183 |
{ |
| 184 |
"begin": "(^|\\G)(\\s*)(-{3})(\\s*)$", |
| 185 |
"end": "(^|\\G)(\\s*(-{3})(\\s*)$)", |
| 186 |
"patterns": [ |
| 187 |
{ |
| 188 |
"include": "source.yaml" |
| 189 |
} |
| 190 |
] |
| 191 |
}, |
| 192 |
{ |
| 193 |
"match": "^(\\s*)(#[\\w\\-\\_]*)\\s*(<!--(.*)-->)?$", |
| 194 |
"captures": { |
| 195 |
"2": { |
| 196 |
"name": "entity.other.attribute-name.html" |
| 197 |
}, |
| 198 |
"3": { |
| 199 |
"name": "comment.block.html" |
| 200 |
} |
| 201 |
} |
| 202 |
}, |
| 203 |
{ |
| 204 |
"include": "#block" |
| 205 |
} |
| 206 |
] |
| 207 |
}, |
| 208 |
"attribute": { |
| 209 |
"patterns": [ |
| 210 |
{ |
| 211 |
"match": "(?x)\n (\n ([^=><\\s]*) # attribute name\n ( # attribute value\n =[\"]([^\"]*)([\"])|[']([^']*)(['])\n | =[^\\s'\"}]*\n )?\n \\s*\n )", |
| 212 |
"captures": { |
| 213 |
"2": { |
| 214 |
"name": "entity.other.attribute-name.html" |
| 215 |
}, |
| 216 |
"3": { |
| 217 |
"patterns": [ |
| 218 |
{ |
| 219 |
"include": "#attribute-interior" |
| 220 |
} |
| 221 |
] |
| 222 |
} |
| 223 |
} |
| 224 |
} |
| 225 |
] |
| 226 |
}, |
| 227 |
"attribute-interior": { |
| 228 |
"patterns": [ |
| 229 |
{ |
| 230 |
"begin": "=", |
| 231 |
"beginCaptures": { |
| 232 |
"0": { |
| 233 |
"name": "punctuation.separator.key-value.html" |
| 234 |
} |
| 235 |
}, |
| 236 |
"end": "(?<=[^\\s=])(?!\\s*=)|(?=/?>)", |
| 237 |
"patterns": [ |
| 238 |
{ |
| 239 |
"match": "([^\\s\"'=<>`/]|/(?!>))+", |
| 240 |
"name": "string.unquoted.html" |
| 241 |
}, |
| 242 |
{ |
| 243 |
"begin": "\"", |
| 244 |
"beginCaptures": { |
| 245 |
"0": { |
| 246 |
"name": "punctuation.definition.string.begin.html" |
| 247 |
} |
| 248 |
}, |
| 249 |
"end": "\"", |
| 250 |
"endCaptures": { |
| 251 |
"0": { |
| 252 |
"name": "punctuation.definition.string.end.html" |
| 253 |
} |
| 254 |
}, |
| 255 |
"name": "string.quoted.double.html", |
| 256 |
"patterns": [ |
| 257 |
{ |
| 258 |
"include": "#entities" |
| 259 |
} |
| 260 |
] |
| 261 |
}, |
| 262 |
{ |
| 263 |
"begin": "'", |
| 264 |
"beginCaptures": { |
| 265 |
"0": { |
| 266 |
"name": "punctuation.definition.string.begin.html" |
| 267 |
} |
| 268 |
}, |
| 269 |
"end": "'", |
| 270 |
"endCaptures": { |
| 271 |
"0": { |
| 272 |
"name": "punctuation.definition.string.end.html" |
| 273 |
} |
| 274 |
}, |
| 275 |
"name": "string.quoted.single.html", |
| 276 |
"patterns": [ |
| 277 |
{ |
| 278 |
"include": "#entities" |
| 279 |
} |
| 280 |
] |
| 281 |
}, |
| 282 |
{ |
| 283 |
"match": "=", |
| 284 |
"name": "invalid.illegal.unexpected-equals-sign.html" |
| 285 |
} |
| 286 |
] |
| 287 |
} |
| 288 |
] |
| 289 |
}, |
| 290 |
"entities": { |
| 291 |
"patterns": [ |
| 292 |
{ |
| 293 |
"captures": { |
| 294 |
"1": { |
| 295 |
"name": "punctuation.definition.entity.html" |
| 296 |
}, |
| 297 |
"912": { |
| 298 |
"name": "punctuation.definition.entity.html" |
| 299 |
} |
| 300 |
}, |
| 301 |
"match": "(?x)\n\t\t\t\t\t\t(&)\t(?=[a-zA-Z])\n\t\t\t\t\t\t(\n\t\t\t\t\t\t\t(a(s(ymp(eq)?|cr|t)|n(d(slope|d|v|and)?|g(s(t|ph)|zarr|e|le|rt(vb(d)?)?|msd(a(h|c|d|e|f|a|g|b))?)?)|c(y|irc|d|ute|E)?|tilde|o(pf|gon)|uml|p(id|os|prox(eq)?|e|E|acir)?|elig|f(r)?|w(conint|int)|l(pha|e(ph|fsym))|acute|ring|grave|m(p|a(cr|lg))|breve)|A(s(sign|cr)|nd|MP|c(y|irc)|tilde|o(pf|gon)|uml|pplyFunction|fr|Elig|lpha|acute|ring|grave|macr|breve))\n\t\t\t\t\t\t | (B(scr|cy|opf|umpeq|e(cause|ta|rnoullis)|fr|a(ckslash|r(v|wed))|reve)|b(s(cr|im(e)?|ol(hsub|b)?|emi)|n(ot|e(quiv)?)|c(y|ong)|ig(s(tar|qcup)|c(irc|up|ap)|triangle(down|up)|o(times|dot|plus)|uplus|vee|wedge)|o(t(tom)?|pf|wtie|x(h(d|u|D|U)?|times|H(d|u|D|U)?|d(R|l|r|L)|u(R|l|r|L)|plus|D(R|l|r|L)|v(R|h|H|l|r|L)?|U(R|l|r|L)|V(R|h|H|l|r|L)?|minus|box))|Not|dquo|u(ll(et)?|mp(e(q)?|E)?)|prime|e(caus(e)?|t(h|ween|a)|psi|rnou|mptyv)|karow|fr|l(ock|k(1(2|4)|34)|a(nk|ck(square|triangle(down|left|right)?|lozenge)))|a(ck(sim(eq)?|cong|prime|epsilon)|r(vee|wed(ge)?))|r(eve|vbar)|brk(tbrk)?))\n\t\t\t\t\t\t | (c(s(cr|u(p(e)?|b(e)?))|h(cy|i|eck(mark)?)|ylcty|c(irc|ups(sm)?|edil|a(ps|ron))|tdot|ir(scir|c(eq|le(d(R|circ|S|dash|ast)|arrow(left|right)))?|e|fnint|E|mid)?|o(n(int|g(dot)?)|p(y(sr)?|f|rod)|lon(e(q)?)?|m(p(fn|le(xes|ment))?|ma(t)?))|dot|u(darr(l|r)|p(s|c(up|ap)|or|dot|brcap)?|e(sc|pr)|vee|wed|larr(p)?|r(vearrow(left|right)|ly(eq(succ|prec)|vee|wedge)|arr(m)?|ren))|e(nt(erdot)?|dil|mptyv)|fr|w(conint|int)|lubs(uit)?|a(cute|p(s|c(up|ap)|dot|and|brcup)?|r(on|et))|r(oss|arr))|C(scr|hi|c(irc|onint|edil|aron)|ircle(Minus|Times|Dot|Plus)|Hcy|o(n(tourIntegral|int|gruent)|unterClockwiseContourIntegral|p(f|roduct)|lon(e)?)|dot|up(Cap)?|OPY|e(nterDot|dilla)|fr|lo(seCurly(DoubleQuote|Quote)|ckwiseContourIntegral)|a(yleys|cute|p(italDifferentialD)?)|ross))\n\t\t\t\t\t\t | (d(s(c(y|r)|trok|ol)|har(l|r)|c(y|aron)|t(dot|ri(f)?)|i(sin|e|v(ide(ontimes)?|onx)?|am(s|ond(suit)?)?|gamma)|Har|z(cy|igrarr)|o(t(square|plus|eq(dot)?|minus)?|ublebarwedge|pf|wn(harpoon(left|right)|downarrows|arrow)|llar)|d(otseq|a(rr|gger))?|u(har|arr)|jcy|e(lta|g|mptyv)|f(isht|r)|wangle|lc(orn|rop)|a(sh(v)?|leth|rr|gger)|r(c(orn|rop)|bkarow)|b(karow|lac)|Arr)|D(s(cr|trok)|c(y|aron)|Scy|i(fferentialD|a(critical(Grave|Tilde|Do(t|ubleAcute)|Acute)|mond))|o(t(Dot|Equal)?|uble(Right(Tee|Arrow)|ContourIntegral|Do(t|wnArrow)|Up(DownArrow|Arrow)|VerticalBar|L(ong(RightArrow|Left(RightArrow|Arrow))|eft(RightArrow|Tee|Arrow)))|pf|wn(Right(TeeVector|Vector(Bar)?)|Breve|Tee(Arrow)?|arrow|Left(RightVector|TeeVector|Vector(Bar)?)|Arrow(Bar|UpArrow)?))|Zcy|el(ta)?|D(otrahd)?|Jcy|fr|a(shv|rr|gger)))\n\t\t\t\t\t\t | (e(s(cr|im|dot)|n(sp|g)|c(y|ir(c)?|olon|aron)|t(h|a)|o(pf|gon)|dot|u(ro|ml)|p(si(v|lon)?|lus|ar(sl)?)|e|D(ot|Dot)|q(s(im|lant(less|gtr))|c(irc|olon)|u(iv(DD)?|est|als)|vparsl)|f(Dot|r)|l(s(dot)?|inters|l)?|a(ster|cute)|r(Dot|arr)|g(s(dot)?|rave)?|x(cl|ist|p(onentiale|ectation))|m(sp(1(3|4))?|pty(set|v)?|acr))|E(s(cr|im)|c(y|irc|aron)|ta|o(pf|gon)|NG|dot|uml|TH|psilon|qu(ilibrium|al(Tilde)?)|fr|lement|acute|grave|x(ists|ponentialE)|m(pty(SmallSquare|VerySmallSquare)|acr)))\n\t\t\t\t\t\t | (f(scr|nof|cy|ilig|o(pf|r(k(v)?|all))|jlig|partint|emale|f(ilig|l(ig|lig)|r)|l(tns|lig|at)|allingdotseq|r(own|a(sl|c(1(2|8|3|4|5|6)|78|2(3|5)|3(8|4|5)|45|5(8|6)))))|F(scr|cy|illed(SmallSquare|VerySmallSquare)|o(uriertrf|pf|rAll)|fr))\n\t\t\t\t\t\t | (G(scr|c(y|irc|edil)|t|opf|dot|T|Jcy|fr|amma(d)?|reater(Greater|SlantEqual|Tilde|Equal(Less)?|FullEqual|Less)|g|breve)|g(s(cr|im(e|l)?)|n(sim|e(q(q)?)?|E|ap(prox)?)|c(y|irc)|t(c(c|ir)|dot|quest|lPar|r(sim|dot|eq(qless|less)|less|a(pprox|rr)))?|imel|opf|dot|jcy|e(s(cc|dot(o(l)?)?|l(es)?)?|q(slant|q)?|l)?|v(nE|ertneqq)|fr|E(l)?|l(j|E|a)?|a(cute|p|mma(d)?)|rave|g(g)?|breve))\n\t\t\t\t\t\t | (h(s(cr|trok|lash)|y(phen|bull)|circ|o(ok(leftarrow|rightarrow)|pf|arr|rbar|mtht)|e(llip|arts(uit)?|rcon)|ks(earow|warow)|fr|a(irsp|lf|r(dcy|r(cir|w)?)|milt)|bar|Arr)|H(s(cr|trok)|circ|ilbertSpace|o(pf|rizontalLine)|ump(DownHump|Equal)|fr|a(cek|t)|ARDcy))\n\t\t\t\t\t\t | (i(s(cr|in(s(v)?|dot|v|E)?)|n(care|t(cal|prod|e(rcal|gers)|larhk)?|odot|fin(tie)?)?|c(y|irc)?|t(ilde)?|i(nfin|i(nt|int)|ota)?|o(cy|ta|pf|gon)|u(kcy|ml)|jlig|prod|e(cy|xcl)|quest|f(f|r)|acute|grave|m(of|ped|a(cr|th|g(part|e|line))))|I(scr|n(t(e(rsection|gral))?|visible(Comma|Times))|c(y|irc)|tilde|o(ta|pf|gon)|dot|u(kcy|ml)|Ocy|Jlig|fr|Ecy|acute|grave|m(plies|a(cr|ginaryI))?))\n\t\t\t\t\t\t | (j(s(cr|ercy)|c(y|irc)|opf|ukcy|fr|math)|J(s(cr|ercy)|c(y|irc)|opf|ukcy|fr))\n\t\t\t\t\t\t | (k(scr|hcy|c(y|edil)|opf|jcy|fr|appa(v)?|green)|K(scr|c(y|edil)|Hcy|opf|Jcy|fr|appa))\n\t\t\t\t\t\t | (l(s(h|cr|trok|im(e|g)?|q(uo(r)?|b)|aquo)|h(ar(d|u(l)?)|blk)|n(sim|e(q(q)?)?|E|ap(prox)?)|c(y|ub|e(il|dil)|aron)|Barr|t(hree|c(c|ir)|imes|dot|quest|larr|r(i(e|f)?|Par))?|Har|o(ng(left(arrow|rightarrow)|rightarrow|mapsto)|times|z(enge|f)?|oparrow(left|right)|p(f|lus|ar)|w(ast|bar)|a(ng|rr)|brk)|d(sh|ca|quo(r)?|r(dhar|ushar))|ur(dshar|uhar)|jcy|par(lt)?|e(s(s(sim|dot|eq(qgtr|gtr)|approx|gtr)|cc|dot(o(r)?)?|g(es)?)?|q(slant|q)?|ft(harpoon(down|up)|threetimes|leftarrows|arrow(tail)?|right(squigarrow|harpoons|arrow(s)?))|g)?|v(nE|ertneqq)|f(isht|loor|r)|E(g)?|l(hard|corner|tri|arr)?|a(ng(d|le)?|cute|t(e(s)?|ail)?|p|emptyv|quo|rr(sim|hk|tl|pl|fs|lp|b(fs)?)?|gran|mbda)|r(har(d)?|corner|tri|arr|m)|g(E)?|m(idot|oust(ache)?)|b(arr|r(k(sl(d|u)|e)|ac(e|k))|brk)|A(tail|arr|rr))|L(s(h|cr|trok)|c(y|edil|aron)|t|o(ng(RightArrow|left(arrow|rightarrow)|rightarrow|Left(RightArrow|Arrow))|pf|wer(RightArrow|LeftArrow))|T|e(ss(Greater|SlantEqual|Tilde|EqualGreater|FullEqual|Less)|ft(Right(Vector|Arrow)|Ceiling|T(ee(Vector|Arrow)?|riangle(Bar|Equal)?)|Do(ubleBracket|wn(TeeVector|Vector(Bar)?))|Up(TeeVector|DownVector|Vector(Bar)?)|Vector(Bar)?|arrow|rightarrow|Floor|A(ngleBracket|rrow(RightArrow|Bar)?)))|Jcy|fr|l(eftarrow)?|a(ng|cute|placetrf|rr|mbda)|midot))\n\t\t\t\t\t\t | (M(scr|cy|inusPlus|opf|u|e(diumSpace|llintrf)|fr|ap)|m(s(cr|tpos)|ho|nplus|c(y|omma)|i(nus(d(u)?|b)?|cro|d(cir|dot|ast)?)|o(dels|pf)|dash|u(ltimap|map)?|p|easuredangle|DDot|fr|l(cp|dr)|a(cr|p(sto(down|up|left)?)?|l(t(ese)?|e)|rker)))\n\t\t\t\t\t\t | (n(s(hort(parallel|mid)|c(cue|e|r)?|im(e(q)?)?|u(cc(eq)?|p(set(eq(q)?)?|e|E)?|b(set(eq(q)?)?|e|E)?)|par|qsu(pe|be)|mid)|Rightarrow|h(par|arr|Arr)|G(t(v)?|g)|c(y|ong(dot)?|up|edil|a(p|ron))|t(ilde|lg|riangle(left(eq)?|right(eq)?)|gl)|i(s(d)?|v)?|o(t(ni(v(c|a|b))?|in(dot|v(c|a|b)|E)?)?|pf)|dash|u(m(sp|ero)?)?|jcy|p(olint|ar(sl|t|allel)?|r(cue|e(c(eq)?)?)?)|e(s(im|ear)|dot|quiv|ar(hk|r(ow)?)|xist(s)?|Arr)?|v(sim|infin|Harr|dash|Dash|l(t(rie)?|e|Arr)|ap|r(trie|Arr)|g(t|e))|fr|w(near|ar(hk|r(ow)?)|Arr)|V(dash|Dash)|l(sim|t(ri(e)?)?|dr|e(s(s)?|q(slant|q)?|ft(arrow|rightarrow))?|E|arr|Arr)|a(ng|cute|tur(al(s)?)?|p(id|os|prox|E)?|bla)|r(tri(e)?|ightarrow|arr(c|w)?|Arr)|g(sim|t(r)?|e(s|q(slant|q)?)?|E)|mid|L(t(v)?|eft(arrow|rightarrow)|l)|b(sp|ump(e)?))|N(scr|c(y|edil|aron)|tilde|o(nBreakingSpace|Break|t(R(ightTriangle(Bar|Equal)?|everseElement)|Greater(Greater|SlantEqual|Tilde|Equal|FullEqual|Less)?|S(u(cceeds(SlantEqual|Tilde|Equal)?|perset(Equal)?|bset(Equal)?)|quareSu(perset(Equal)?|bset(Equal)?))|Hump(DownHump|Equal)|Nested(GreaterGreater|LessLess)|C(ongruent|upCap)|Tilde(Tilde|Equal|FullEqual)?|DoubleVerticalBar|Precedes(SlantEqual|Equal)?|E(qual(Tilde)?|lement|xists)|VerticalBar|Le(ss(Greater|SlantEqual|Tilde|Equal|Less)?|ftTriangle(Bar|Equal)?))?|pf)|u|e(sted(GreaterGreater|LessLess)|wLine|gative(MediumSpace|Thi(nSpace|ckSpace)|VeryThinSpace))|Jcy|fr|acute))\n\t\t\t\t\t\t | (o(s(cr|ol|lash)|h(m|bar)|c(y|ir(c)?)|ti(lde|mes(as)?)|S|int|opf|d(sold|iv|ot|ash|blac)|uml|p(erp|lus|ar)|elig|vbar|f(cir|r)|l(c(ir|ross)|t|ine|arr)|a(st|cute)|r(slope|igof|or|d(er(of)?|f|m)?|v|arr)?|g(t|on|rave)|m(i(nus|cron|d)|ega|acr))|O(s(cr|lash)|c(y|irc)|ti(lde|mes)|opf|dblac|uml|penCurly(DoubleQuote|Quote)|ver(B(ar|rac(e|ket))|Parenthesis)|fr|Elig|acute|r|grave|m(icron|ega|acr)))\n\t\t\t\t\t\t | (p(s(cr|i)|h(i(v)?|one|mmat)|cy|i(tchfork|v)?|o(intint|und|pf)|uncsp|er(cnt|tenk|iod|p|mil)|fr|l(us(sim|cir|two|d(o|u)|e|acir|mn|b)?|an(ck(h)?|kv))|ar(s(im|l)|t|a(llel)?)?|r(sim|n(sim|E|ap)|cue|ime(s)?|o(d|p(to)?|f(surf|line|alar))|urel|e(c(sim|n(sim|eqq|approx)|curlyeq|eq|approx)?)?|E|ap)?|m)|P(s(cr|i)|hi|cy|i|o(incareplane|pf)|fr|lusMinus|artialD|r(ime|o(duct|portion(al)?)|ecedes(SlantEqual|Tilde|Equal)?)?))\n\t\t\t\t\t\t | (q(scr|int|opf|u(ot|est(eq)?|at(int|ernions))|prime|fr)|Q(scr|opf|UOT|fr))\n\t\t\t\t\t\t | (R(s(h|cr)|ho|c(y|edil|aron)|Barr|ight(Ceiling|T(ee(Vector|Arrow)?|riangle(Bar|Equal)?)|Do(ubleBracket|wn(TeeVector|Vector(Bar)?))|Up(TeeVector|DownVector|Vector(Bar)?)|Vector(Bar)?|arrow|Floor|A(ngleBracket|rrow(Bar|LeftArrow)?))|o(undImplies|pf)|uleDelayed|e(verse(UpEquilibrium|E(quilibrium|lement)))?|fr|EG|a(ng|cute|rr(tl)?)|rightarrow)|r(s(h|cr|q(uo(r)?|b)|aquo)|h(o(v)?|ar(d|u(l)?))|nmid|c(y|ub|e(il|dil)|aron)|Barr|t(hree|imes|ri(e|f|ltri)?)|i(singdotseq|ng|ght(squigarrow|harpoon(down|up)|threetimes|left(harpoons|arrows)|arrow(tail)?|rightarrows))|Har|o(times|p(f|lus|ar)|a(ng|rr)|brk)|d(sh|ca|quo(r)?|ldhar)|uluhar|p(polint|ar(gt)?)|e(ct|al(s|ine|part)?|g)|f(isht|loor|r)|l(har|arr|m)|a(ng(d|e|le)?|c(ute|e)|t(io(nals)?|ail)|dic|emptyv|quo|rr(sim|hk|c|tl|pl|fs|w|lp|ap|b(fs)?)?)|rarr|x|moust(ache)?|b(arr|r(k(sl(d|u)|e)|ac(e|k))|brk)|A(tail|arr|rr)))\n\t\t\t\t\t\t | (s(s(cr|tarf|etmn|mile)|h(y|c(hcy|y)|ort(parallel|mid)|arp)|c(sim|y|n(sim|E|ap)|cue|irc|polint|e(dil)?|E|a(p|ron))?|t(ar(f)?|r(ns|aight(phi|epsilon)))|i(gma(v|f)?|m(ne|dot|plus|e(q)?|l(E)?|rarr|g(E)?)?)|zlig|o(pf|ftcy|l(b(ar)?)?)|dot(e|b)?|u(ng|cc(sim|n(sim|eqq|approx)|curlyeq|eq|approx)?|p(s(im|u(p|b)|et(neq(q)?|eq(q)?)?)|hs(ol|ub)|1|n(e|E)|2|d(sub|ot)|3|plus|e(dot)?|E|larr|mult)?|m|b(s(im|u(p|b)|et(neq(q)?|eq(q)?)?)|n(e|E)|dot|plus|e(dot)?|E|rarr|mult)?)|pa(des(uit)?|r)|e(swar|ct|tm(n|inus)|ar(hk|r(ow)?)|xt|mi|Arr)|q(su(p(set(eq)?|e)?|b(set(eq)?|e)?)|c(up(s)?|ap(s)?)|u(f|ar(e|f))?)|fr(own)?|w(nwar|ar(hk|r(ow)?)|Arr)|larr|acute|rarr|m(t(e(s)?)?|i(d|le)|eparsl|a(shp|llsetminus))|bquo)|S(scr|hort(RightArrow|DownArrow|UpArrow|LeftArrow)|c(y|irc|edil|aron)?|tar|igma|H(cy|CHcy)|opf|u(c(hThat|ceeds(SlantEqual|Tilde|Equal)?)|p(set|erset(Equal)?)?|m|b(set(Equal)?)?)|OFTcy|q(uare(Su(perset(Equal)?|bset(Equal)?)|Intersection|Union)?|rt)|fr|acute|mallCircle))\n\t\t\t\t\t\t | (t(s(hcy|c(y|r)|trok)|h(i(nsp|ck(sim|approx))|orn|e(ta(sym|v)?|re(4|fore))|k(sim|ap))|c(y|edil|aron)|i(nt|lde|mes(d|b(ar)?)?)|o(sa|p(cir|f(ork)?|bot)?|ea)|dot|prime|elrec|fr|w(ixt|ohead(leftarrow|rightarrow))|a(u|rget)|r(i(sb|time|dot|plus|e|angle(down|q|left(eq)?|right(eq)?)?|minus)|pezium|ade)|brk)|T(s(cr|trok)|RADE|h(i(nSpace|ckSpace)|e(ta|refore))|c(y|edil|aron)|S(cy|Hcy)|ilde(Tilde|Equal|FullEqual)?|HORN|opf|fr|a(u|b)|ripleDot))\n\t\t\t\t\t\t | (u(scr|h(ar(l|r)|blk)|c(y|irc)|t(ilde|dot|ri(f)?)|Har|o(pf|gon)|d(har|arr|blac)|u(arr|ml)|p(si(h|lon)?|harpoon(left|right)|downarrow|uparrows|lus|arrow)|f(isht|r)|wangle|l(c(orn(er)?|rop)|tri)|a(cute|rr)|r(c(orn(er)?|rop)|tri|ing)|grave|m(l|acr)|br(cy|eve)|Arr)|U(scr|n(ion(Plus)?|der(B(ar|rac(e|ket))|Parenthesis))|c(y|irc)|tilde|o(pf|gon)|dblac|uml|p(si(lon)?|downarrow|Tee(Arrow)?|per(RightArrow|LeftArrow)|DownArrow|Equilibrium|arrow|Arrow(Bar|DownArrow)?)|fr|a(cute|rr(ocir)?)|ring|grave|macr|br(cy|eve)))\n\t\t\t\t\t\t | (v(s(cr|u(pn(e|E)|bn(e|E)))|nsu(p|b)|cy|Bar(v)?|zigzag|opf|dash|prop|e(e(eq|bar)?|llip|r(t|bar))|Dash|fr|ltri|a(ngrt|r(s(igma|u(psetneq(q)?|bsetneq(q)?))|nothing|t(heta|riangle(left|right))|p(hi|i|ropto)|epsilon|kappa|r(ho)?))|rtri|Arr)|V(scr|cy|opf|dash(l)?|e(e|r(yThinSpace|t(ical(Bar|Separator|Tilde|Line))?|bar))|Dash|vdash|fr|bar))\n\t\t\t\t\t\t | (w(scr|circ|opf|p|e(ierp|d(ge(q)?|bar))|fr|r(eath)?)|W(scr|circ|opf|edge|fr))\n\t\t\t\t\t\t | (X(scr|i|opf|fr)|x(s(cr|qcup)|h(arr|Arr)|nis|c(irc|up|ap)|i|o(time|dot|p(f|lus))|dtri|u(tri|plus)|vee|fr|wedge|l(arr|Arr)|r(arr|Arr)|map))\n\t\t\t\t\t\t | (y(scr|c(y|irc)|icy|opf|u(cy|ml)|en|fr|ac(y|ute))|Y(scr|c(y|irc)|opf|uml|Icy|Ucy|fr|acute|Acy))\n\t\t\t\t\t\t | (z(scr|hcy|c(y|aron)|igrarr|opf|dot|e(ta|etrf)|fr|w(nj|j)|acute)|Z(scr|c(y|aron)|Hcy|opf|dot|e(ta|roWidthSpace)|fr|acute))\n\t\t\t\t\t\t)\n\t\t\t\t\t\t(;)\n\t\t\t\t\t", |
| 302 |
"name": "constant.character.entity.named.$2.html" |
| 303 |
}, |
| 304 |
{ |
| 305 |
"captures": { |
| 306 |
"1": { |
| 307 |
"name": "punctuation.definition.entity.html" |
| 308 |
}, |
| 309 |
"3": { |
| 310 |
"name": "punctuation.definition.entity.html" |
| 311 |
} |
| 312 |
}, |
| 313 |
"match": "(&)#[0-9]+(;)", |
| 314 |
"name": "constant.character.entity.numeric.decimal.html" |
| 315 |
}, |
| 316 |
{ |
| 317 |
"captures": { |
| 318 |
"1": { |
| 319 |
"name": "punctuation.definition.entity.html" |
| 320 |
}, |
| 321 |
"3": { |
| 322 |
"name": "punctuation.definition.entity.html" |
| 323 |
} |
| 324 |
}, |
| 325 |
"match": "(&)#[xX][0-9a-fA-F]+(;)", |
| 326 |
"name": "constant.character.entity.numeric.hexadecimal.html" |
| 327 |
}, |
| 328 |
{ |
| 329 |
"match": "&(?=[a-zA-Z0-9]+;)", |
| 330 |
"name": "invalid.illegal.ambiguous-ampersand.html" |
| 331 |
} |
| 332 |
] |
| 333 |
}, |
| 334 |
"heading": { |
| 335 |
"match": "(?:^|\\G)[ ]*(#{1,6}\\s+(.*?)(\\s+#{1,6})?\\s*)$", |
| 336 |
"captures": { |
| 337 |
"1": { |
| 338 |
"patterns": [ |
| 339 |
{ |
| 340 |
"match": "(#{6})\\s+(.*?)(?:\\s+(#+))?\\s*$", |
| 341 |
"name": "heading.6.markdown", |
| 342 |
"captures": { |
| 343 |
"1": { |
| 344 |
"name": "punctuation.definition.heading.markdown" |
| 345 |
}, |
| 346 |
"2": { |
| 347 |
"name": "entity.name.section.markdown", |
| 348 |
"patterns": [ |
| 349 |
{ |
| 350 |
"include": "text.html.markdown#inline" |
| 351 |
}, |
| 352 |
{ |
| 353 |
"include": "text.html.derivative" |
| 354 |
} |
| 355 |
] |
| 356 |
}, |
| 357 |
"3": { |
| 358 |
"name": "punctuation.definition.heading.markdown" |
| 359 |
} |
| 360 |
} |
| 361 |
}, |
| 362 |
{ |
| 363 |
"match": "(#{5})\\s+(.*?)(?:\\s+(#+))?\\s*$", |
| 364 |
"name": "heading.5.markdown", |
| 365 |
"captures": { |
| 366 |
"1": { |
| 367 |
"name": "punctuation.definition.heading.markdown" |
| 368 |
}, |
| 369 |
"2": { |
| 370 |
"name": "entity.name.section.markdown", |
| 371 |
"patterns": [ |
| 372 |
{ |
| 373 |
"include": "text.html.markdown#inline" |
| 374 |
}, |
| 375 |
{ |
| 376 |
"include": "text.html.derivative" |
| 377 |
} |
| 378 |
] |
| 379 |
}, |
| 380 |
"3": { |
| 381 |
"name": "punctuation.definition.heading.markdown" |
| 382 |
} |
| 383 |
} |
| 384 |
}, |
| 385 |
{ |
| 386 |
"match": "(#{4})\\s+(.*?)(?:\\s+(#+))?\\s*$", |
| 387 |
"name": "heading.4.markdown", |
| 388 |
"captures": { |
| 389 |
"1": { |
| 390 |
"name": "punctuation.definition.heading.markdown" |
| 391 |
}, |
| 392 |
"2": { |
| 393 |
"name": "entity.name.section.markdown", |
| 394 |
"patterns": [ |
| 395 |
{ |
| 396 |
"include": "text.html.markdown#inline" |
| 397 |
}, |
| 398 |
{ |
| 399 |
"include": "text.html.derivative" |
| 400 |
} |
| 401 |
] |
| 402 |
}, |
| 403 |
"3": { |
| 404 |
"name": "punctuation.definition.heading.markdown" |
| 405 |
} |
| 406 |
} |
| 407 |
}, |
| 408 |
{ |
| 409 |
"match": "(#{3})\\s+(.*?)(?:\\s+(#+))?\\s*$", |
| 410 |
"name": "heading.3.markdown", |
| 411 |
"captures": { |
| 412 |
"1": { |
| 413 |
"name": "punctuation.definition.heading.markdown" |
| 414 |
}, |
| 415 |
"2": { |
| 416 |
"name": "entity.name.section.markdown", |
| 417 |
"patterns": [ |
| 418 |
{ |
| 419 |
"include": "text.html.markdown#inline" |
| 420 |
}, |
| 421 |
{ |
| 422 |
"include": "text.html.derivative" |
| 423 |
} |
| 424 |
] |
| 425 |
}, |
| 426 |
"3": { |
| 427 |
"name": "punctuation.definition.heading.markdown" |
| 428 |
} |
| 429 |
} |
| 430 |
}, |
| 431 |
{ |
| 432 |
"match": "(#{2})\\s+(.*?)(?:\\s+(#+))?\\s*$", |
| 433 |
"name": "heading.2.markdown", |
| 434 |
"captures": { |
| 435 |
"1": { |
| 436 |
"name": "punctuation.definition.heading.markdown" |
| 437 |
}, |
| 438 |
"2": { |
| 439 |
"name": "entity.name.section.markdown", |
| 440 |
"patterns": [ |
| 441 |
{ |
| 442 |
"include": "text.html.markdown#inline" |
| 443 |
}, |
| 444 |
{ |
| 445 |
"include": "text.html.derivative" |
| 446 |
} |
| 447 |
] |
| 448 |
}, |
| 449 |
"3": { |
| 450 |
"name": "punctuation.definition.heading.markdown" |
| 451 |
} |
| 452 |
} |
| 453 |
}, |
| 454 |
{ |
| 455 |
"match": "(#{1})\\s+(.*?)(?:\\s+(#+))?\\s*$", |
| 456 |
"name": "heading.1.markdown", |
| 457 |
"captures": { |
| 458 |
"1": { |
| 459 |
"name": "punctuation.definition.heading.markdown" |
| 460 |
}, |
| 461 |
"2": { |
| 462 |
"name": "entity.name.section.markdown", |
| 463 |
"patterns": [ |
| 464 |
{ |
| 465 |
"include": "text.html.markdown#inline" |
| 466 |
}, |
| 467 |
{ |
| 468 |
"include": "text.html.derivative" |
| 469 |
} |
| 470 |
] |
| 471 |
}, |
| 472 |
"3": { |
| 473 |
"name": "punctuation.definition.heading.markdown" |
| 474 |
} |
| 475 |
} |
| 476 |
} |
| 477 |
] |
| 478 |
} |
| 479 |
}, |
| 480 |
"name": "markup.heading.markdown", |
| 481 |
"patterns": [ |
| 482 |
{ |
| 483 |
"include": "text.html.markdown#inline" |
| 484 |
} |
| 485 |
] |
| 486 |
}, |
| 487 |
"heading-setext": { |
| 488 |
"patterns": [ |
| 489 |
{ |
| 490 |
"match": "^(={3,})(?=[ \\t]*$\\n?)", |
| 491 |
"name": "markup.heading.setext.1.markdown" |
| 492 |
}, |
| 493 |
{ |
| 494 |
"match": "^(-{3,})(?=[ \\t]*$\\n?)", |
| 495 |
"name": "markup.heading.setext.2.markdown" |
| 496 |
} |
| 497 |
] |
| 498 |
}, |
| 499 |
"lists": { |
| 500 |
"patterns": [ |
| 501 |
{ |
| 502 |
"begin": "(^|\\G)([ ]*)([*+-])([ \\t])", |
| 503 |
"beginCaptures": { |
| 504 |
"3": { |
| 505 |
"name": "punctuation.definition.list.begin.markdown" |
| 506 |
} |
| 507 |
}, |
| 508 |
"name": "markup.list.unnumbered.markdown", |
| 509 |
"patterns": [ |
| 510 |
{ |
| 511 |
"include": "#block" |
| 512 |
}, |
| 513 |
{ |
| 514 |
"include": "text.html.markdown#list_paragraph" |
| 515 |
} |
| 516 |
], |
| 517 |
"while": "((^|\\G)([ ]*|\\t))|(^[ \\t]*$)" |
| 518 |
}, |
| 519 |
{ |
| 520 |
"begin": "(^|\\G)([ ]*)([0-9]+\\.)([ \\t])", |
| 521 |
"beginCaptures": { |
| 522 |
"3": { |
| 523 |
"name": "punctuation.definition.list.begin.markdown" |
| 524 |
} |
| 525 |
}, |
| 526 |
"name": "markup.list.numbered.markdown", |
| 527 |
"patterns": [ |
| 528 |
{ |
| 529 |
"include": "#block" |
| 530 |
}, |
| 531 |
{ |
| 532 |
"include": "text.html.markdown#list_paragraph" |
| 533 |
} |
| 534 |
], |
| 535 |
"while": "((^|\\G)([ ]*|\\t))|(^[ \\t]*$)" |
| 536 |
} |
| 537 |
] |
| 538 |
}, |
| 539 |
"paragraph": { |
| 540 |
"begin": "(^|\\G)[ ]*(?=\\S)", |
| 541 |
"name": "meta.paragraph.markdown", |
| 542 |
"patterns": [ |
| 543 |
{ |
| 544 |
"include": "text.html.markdown#inline" |
| 545 |
}, |
| 546 |
{ |
| 547 |
"include": "text.html.derivative" |
| 548 |
}, |
| 549 |
{ |
| 550 |
"include": "#heading-setext" |
| 551 |
} |
| 552 |
], |
| 553 |
"while": "(^|\\G)((?=\\s*[-=]{3,}\\s*$)|[ ]{4,}(?=\\S))" |
| 554 |
}, |
| 555 |
"blockquote": { |
| 556 |
"begin": "(^|\\G)[ ]*(>) ?", |
| 557 |
"captures": { |
| 558 |
"2": { |
| 559 |
"name": "punctuation.definition.quote.begin.markdown" |
| 560 |
} |
| 561 |
}, |
| 562 |
"name": "markup.quote.markdown", |
| 563 |
"patterns": [ |
| 564 |
{ |
| 565 |
"include": "#block" |
| 566 |
} |
| 567 |
], |
| 568 |
"while": "(^|\\G)\\s*(>) ?" |
| 569 |
} |
| 570 |
} |
| 571 |
} |
| 572 |
|