Path: blob/main/extensions/html/syntaxes/html.tmLanguage.json
3314 views
{1"information_for_contributors": [2"This file has been converted from https://github.com/textmate/html.tmbundle/blob/master/Syntaxes/HTML.plist",3"If you want to provide a fix or improvement, please create a pull request against the original repository.",4"Once accepted there, we are happy to receive an update request."5],6"version": "https://github.com/textmate/html.tmbundle/commit/0c3d5ee54de3a993f747f54186b73a4d2d3c44a2",7"name": "HTML",8"scopeName": "text.html.basic",9"injections": {10"R:text.html - (comment.block, text.html meta.embedded, meta.tag.*.*.html, meta.tag.*.*.*.html, meta.tag.*.*.*.*.html)": {11"comment": "Uses R: to ensure this matches after any other injections.",12"patterns": [13{14"match": "<",15"name": "invalid.illegal.bad-angle-bracket.html"16}17]18}19},20"patterns": [21{22"include": "#xml-processing"23},24{25"include": "#comment"26},27{28"include": "#doctype"29},30{31"include": "#cdata"32},33{34"include": "#tags-valid"35},36{37"include": "#tags-invalid"38},39{40"include": "#entities"41}42],43"repository": {44"attribute": {45"patterns": [46{47"begin": "(s(hape|cope|t(ep|art)|ize(s)?|p(ellcheck|an)|elected|lot|andbox|rc(set|doc|lang)?)|h(ttp-equiv|i(dden|gh)|e(ight|aders)|ref(lang)?)|n(o(nce|validate|module)|ame)|c(h(ecked|arset)|ite|o(nt(ent(editable)?|rols)|ords|l(s(pan)?|or))|lass|rossorigin)|t(ype(mustmatch)?|itle|a(rget|bindex)|ranslate)|i(s(map)?|n(tegrity|putmode)|tem(scope|type|id|prop|ref)|d)|op(timum|en)|d(i(sabled|r(name)?)|ownload|e(coding|f(er|ault))|at(etime|a)|raggable)|usemap|p(ing|oster|la(ysinline|ceholder)|attern|reload)|enctype|value|kind|for(m(novalidate|target|enctype|action|method)?)?|w(idth|rap)|l(ist|o(op|w)|a(ng|bel))|a(s(ync)?|c(ce(sskey|pt(-charset)?)|tion)|uto(c(omplete|apitalize)|play|focus)|l(t|low(usermedia|paymentrequest|fullscreen))|bbr)|r(ows(pan)?|e(versed|quired|ferrerpolicy|l|adonly))|m(in(length)?|u(ted|ltiple)|e(thod|dia)|a(nifest|x(length)?)))(?![\\w:-])",48"beginCaptures": {49"0": {50"name": "entity.other.attribute-name.html"51}52},53"comment": "HTML5 attributes, not event handlers",54"end": "(?=\\s*+[^=\\s])",55"name": "meta.attribute.$1.html",56"patterns": [57{58"include": "#attribute-interior"59}60]61},62{63"begin": "style(?![\\w:-])",64"beginCaptures": {65"0": {66"name": "entity.other.attribute-name.html"67}68},69"comment": "HTML5 style attribute",70"end": "(?=\\s*+[^=\\s])",71"name": "meta.attribute.style.html",72"patterns": [73{74"begin": "=",75"beginCaptures": {76"0": {77"name": "punctuation.separator.key-value.html"78}79},80"end": "(?<=[^\\s=])(?!\\s*=)|(?=/?>)",81"patterns": [82{83"begin": "(?=[^\\s=<>`/]|/(?!>))",84"end": "(?!\\G)",85"name": "meta.embedded.line.css",86"patterns": [87{88"captures": {89"0": {90"name": "source.css"91}92},93"match": "([^\\s\"'=<>`/]|/(?!>))+",94"name": "string.unquoted.html"95},96{97"begin": "\"",98"beginCaptures": {99"0": {100"name": "punctuation.definition.string.begin.html"101}102},103"contentName": "source.css",104"end": "(\")",105"endCaptures": {106"0": {107"name": "punctuation.definition.string.end.html"108},109"1": {110"name": "source.css"111}112},113"name": "string.quoted.double.html",114"patterns": [115{116"include": "#entities"117}118]119},120{121"begin": "'",122"beginCaptures": {123"0": {124"name": "punctuation.definition.string.begin.html"125}126},127"contentName": "source.css",128"end": "(')",129"endCaptures": {130"0": {131"name": "punctuation.definition.string.end.html"132},133"1": {134"name": "source.css"135}136},137"name": "string.quoted.single.html",138"patterns": [139{140"include": "#entities"141}142]143}144]145},146{147"match": "=",148"name": "invalid.illegal.unexpected-equals-sign.html"149}150]151}152]153},154{155"begin": "on(s(croll|t(orage|alled)|u(spend|bmit)|e(curitypolicyviolation|ek(ing|ed)|lect))|hashchange|c(hange|o(ntextmenu|py)|u(t|echange)|l(ick|ose)|an(cel|play(through)?))|t(imeupdate|oggle)|in(put|valid)|o(nline|ffline)|d(urationchange|r(op|ag(start|over|e(n(ter|d)|xit)|leave)?)|blclick)|un(handledrejection|load)|p(opstate|lay(ing)?|a(ste|use|ge(show|hide))|rogress)|e(nded|rror|mptied)|volumechange|key(down|up|press)|focus|w(heel|aiting)|l(oad(start|e(nd|d(data|metadata)))?|anguagechange)|a(uxclick|fterprint|bort)|r(e(s(ize|et)|jectionhandled)|atechange)|m(ouse(o(ut|ver)|down|up|enter|leave|move)|essage(error)?)|b(efore(unload|print)|lur))(?![\\w:-])",156"beginCaptures": {157"0": {158"name": "entity.other.attribute-name.html"159}160},161"comment": "HTML5 attributes, event handlers",162"end": "(?=\\s*+[^=\\s])",163"name": "meta.attribute.event-handler.$1.html",164"patterns": [165{166"begin": "=",167"beginCaptures": {168"0": {169"name": "punctuation.separator.key-value.html"170}171},172"end": "(?<=[^\\s=])(?!\\s*=)|(?=/?>)",173"patterns": [174{175"begin": "(?=[^\\s=<>`/]|/(?!>))",176"end": "(?!\\G)",177"name": "meta.embedded.line.js",178"patterns": [179{180"captures": {181"0": {182"name": "source.js"183},184"1": {185"patterns": [186{187"include": "source.js"188}189]190}191},192"match": "(([^\\s\"'=<>`/]|/(?!>))+)",193"name": "string.unquoted.html"194},195{196"begin": "\"",197"beginCaptures": {198"0": {199"name": "punctuation.definition.string.begin.html"200}201},202"contentName": "source.js",203"end": "(\")",204"endCaptures": {205"0": {206"name": "punctuation.definition.string.end.html"207},208"1": {209"name": "source.js"210}211},212"name": "string.quoted.double.html",213"patterns": [214{215"captures": {216"0": {217"patterns": [218{219"include": "source.js"220}221]222}223},224"match": "([^\\n\"/]|/(?![/*]))+"225},226{227"begin": "//",228"beginCaptures": {229"0": {230"name": "punctuation.definition.comment.js"231}232},233"end": "(?=\")|\\n",234"name": "comment.line.double-slash.js"235},236{237"begin": "/\\*",238"beginCaptures": {239"0": {240"name": "punctuation.definition.comment.begin.js"241}242},243"end": "(?=\")|\\*/",244"endCaptures": {245"0": {246"name": "punctuation.definition.comment.end.js"247}248},249"name": "comment.block.js"250}251]252},253{254"begin": "'",255"beginCaptures": {256"0": {257"name": "punctuation.definition.string.begin.html"258}259},260"contentName": "source.js",261"end": "(')",262"endCaptures": {263"0": {264"name": "punctuation.definition.string.end.html"265},266"1": {267"name": "source.js"268}269},270"name": "string.quoted.single.html",271"patterns": [272{273"captures": {274"0": {275"patterns": [276{277"include": "source.js"278}279]280}281},282"match": "([^\\n'/]|/(?![/*]))+"283},284{285"begin": "//",286"beginCaptures": {287"0": {288"name": "punctuation.definition.comment.js"289}290},291"end": "(?=')|\\n",292"name": "comment.line.double-slash.js"293},294{295"begin": "/\\*",296"beginCaptures": {297"0": {298"name": "punctuation.definition.comment.begin.js"299}300},301"end": "(?=')|\\*/",302"endCaptures": {303"0": {304"name": "punctuation.definition.comment.end.js"305}306},307"name": "comment.block.js"308}309]310}311]312},313{314"match": "=",315"name": "invalid.illegal.unexpected-equals-sign.html"316}317]318}319]320},321{322"begin": "(data-[a-z\\-]+)(?![\\w:-])",323"beginCaptures": {324"0": {325"name": "entity.other.attribute-name.html"326}327},328"comment": "HTML5 attributes, data-*",329"end": "(?=\\s*+[^=\\s])",330"name": "meta.attribute.data-x.$1.html",331"patterns": [332{333"include": "#attribute-interior"334}335]336},337{338"begin": "(align|bgcolor|border)(?![\\w:-])",339"beginCaptures": {340"0": {341"name": "invalid.deprecated.entity.other.attribute-name.html"342}343},344"comment": "HTML attributes, deprecated",345"end": "(?=\\s*+[^=\\s])",346"name": "meta.attribute.$1.html",347"patterns": [348{349"include": "#attribute-interior"350}351]352},353{354"begin": "([^\\x{0020}\"'<>/=\\x{0000}-\\x{001F}\\x{007F}-\\x{009F}\\x{FDD0}-\\x{FDEF}\\x{FFFE}\\x{FFFF}\\x{1FFFE}\\x{1FFFF}\\x{2FFFE}\\x{2FFFF}\\x{3FFFE}\\x{3FFFF}\\x{4FFFE}\\x{4FFFF}\\x{5FFFE}\\x{5FFFF}\\x{6FFFE}\\x{6FFFF}\\x{7FFFE}\\x{7FFFF}\\x{8FFFE}\\x{8FFFF}\\x{9FFFE}\\x{9FFFF}\\x{AFFFE}\\x{AFFFF}\\x{BFFFE}\\x{BFFFF}\\x{CFFFE}\\x{CFFFF}\\x{DFFFE}\\x{DFFFF}\\x{EFFFE}\\x{EFFFF}\\x{FFFFE}\\x{FFFFF}\\x{10FFFE}\\x{10FFFF}]+)",355"beginCaptures": {356"0": {357"name": "entity.other.attribute-name.html"358}359},360"comment": "Anything else that is valid",361"end": "(?=\\s*+[^=\\s])",362"name": "meta.attribute.unrecognized.$1.html",363"patterns": [364{365"include": "#attribute-interior"366}367]368},369{370"match": "[^\\s>]+",371"name": "invalid.illegal.character-not-allowed-here.html"372}373]374},375"attribute-interior": {376"patterns": [377{378"begin": "=",379"beginCaptures": {380"0": {381"name": "punctuation.separator.key-value.html"382}383},384"end": "(?<=[^\\s=])(?!\\s*=)|(?=/?>)",385"patterns": [386{387"match": "([^\\s\"'=<>`/]|/(?!>))+",388"name": "string.unquoted.html"389},390{391"begin": "\"",392"beginCaptures": {393"0": {394"name": "punctuation.definition.string.begin.html"395}396},397"end": "\"",398"endCaptures": {399"0": {400"name": "punctuation.definition.string.end.html"401}402},403"name": "string.quoted.double.html",404"patterns": [405{406"include": "#entities"407}408]409},410{411"begin": "'",412"beginCaptures": {413"0": {414"name": "punctuation.definition.string.begin.html"415}416},417"end": "'",418"endCaptures": {419"0": {420"name": "punctuation.definition.string.end.html"421}422},423"name": "string.quoted.single.html",424"patterns": [425{426"include": "#entities"427}428]429},430{431"match": "=",432"name": "invalid.illegal.unexpected-equals-sign.html"433}434]435}436]437},438"cdata": {439"begin": "<!\\[CDATA\\[",440"beginCaptures": {441"0": {442"name": "punctuation.definition.tag.begin.html"443}444},445"contentName": "string.other.inline-data.html",446"end": "]]>",447"endCaptures": {448"0": {449"name": "punctuation.definition.tag.end.html"450}451},452"name": "meta.tag.metadata.cdata.html"453},454"comment": {455"begin": "<!--",456"captures": {457"0": {458"name": "punctuation.definition.comment.html"459}460},461"end": "-->",462"name": "comment.block.html",463"patterns": [464{465"match": "\\G-?>",466"name": "invalid.illegal.characters-not-allowed-here.html"467},468{469"match": "<!--(?!>)|<!-(?=-->)",470"name": "invalid.illegal.characters-not-allowed-here.html"471},472{473"match": "--!>",474"name": "invalid.illegal.characters-not-allowed-here.html"475}476]477},478"core-minus-invalid": {479"comment": "This should be the root pattern array includes minus #tags-invalid",480"patterns": [481{482"include": "#xml-processing"483},484{485"include": "#comment"486},487{488"include": "#doctype"489},490{491"include": "#cdata"492},493{494"include": "#tags-valid"495},496{497"include": "#entities"498}499]500},501"doctype": {502"begin": "<!(?=(?i:DOCTYPE\\s))",503"beginCaptures": {504"0": {505"name": "punctuation.definition.tag.begin.html"506}507},508"end": ">",509"endCaptures": {510"0": {511"name": "punctuation.definition.tag.end.html"512}513},514"name": "meta.tag.metadata.doctype.html",515"patterns": [516{517"match": "\\G(?i:DOCTYPE)",518"name": "entity.name.tag.html"519},520{521"begin": "\"",522"end": "\"",523"name": "string.quoted.double.html"524},525{526"match": "[^\\s>]+",527"name": "entity.other.attribute-name.html"528}529]530},531"entities": {532"patterns": [533{534"captures": {535"1": {536"name": "punctuation.definition.entity.html"537},538"912": {539"name": "punctuation.definition.entity.html"540}541},542"comment": "Yes this is a bit ridiculous, there are quite a lot of these",543"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",544"name": "constant.character.entity.named.$2.html"545},546{547"captures": {548"1": {549"name": "punctuation.definition.entity.html"550},551"3": {552"name": "punctuation.definition.entity.html"553}554},555"match": "(&)#[0-9]+(;)",556"name": "constant.character.entity.numeric.decimal.html"557},558{559"captures": {560"1": {561"name": "punctuation.definition.entity.html"562},563"3": {564"name": "punctuation.definition.entity.html"565}566},567"match": "(&)#[xX][0-9a-fA-F]+(;)",568"name": "constant.character.entity.numeric.hexadecimal.html"569},570{571"match": "&(?=[a-zA-Z0-9]+;)",572"name": "invalid.illegal.ambiguous-ampersand.html"573}574]575},576"math": {577"patterns": [578{579"begin": "(?i)(<)(math)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(>))?",580"beginCaptures": {581"0": {582"name": "meta.tag.structure.$2.start.html"583},584"1": {585"name": "punctuation.definition.tag.begin.html"586},587"2": {588"name": "entity.name.tag.html"589},590"3": {591"patterns": [592{593"include": "#attribute"594}595]596},597"5": {598"name": "punctuation.definition.tag.end.html"599}600},601"end": "(?i)(</)(\\2)\\s*(>)",602"endCaptures": {603"0": {604"name": "meta.tag.structure.$2.end.html"605},606"1": {607"name": "punctuation.definition.tag.begin.html"608},609"2": {610"name": "entity.name.tag.html"611},612"3": {613"name": "punctuation.definition.tag.end.html"614}615},616"name": "meta.element.structure.$2.html",617"patterns": [618{619"begin": "(?<!>)\\G",620"end": ">",621"endCaptures": {622"0": {623"name": "punctuation.definition.tag.end.html"624}625},626"name": "meta.tag.structure.start.html",627"patterns": [628{629"include": "#attribute"630}631]632},633{634"include": "#tags"635}636]637}638],639"repository": {640"attribute": {641"patterns": [642{643"begin": "(s(hift|ymmetric|cript(sizemultiplier|level|minsize)|t(ackalign|retchy)|ide|u(pscriptshift|bscriptshift)|e(parator(s)?|lection)|rc)|h(eight|ref)|n(otation|umalign)|c(haralign|olumn(spa(n|cing)|width|lines|align)|lose|rossout)|i(n(dent(shift(first|last)?|target|align(first|last)?)|fixlinebreakstyle)|d)|o(pen|verflow)|d(i(splay(style)?|r)|e(nomalign|cimalpoint|pth))|position|e(dge|qual(columns|rows))|voffset|f(orm|ence|rame(spacing)?)|width|l(space|ine(thickness|leading|break(style|multchar)?)|o(ngdivstyle|cation)|ength|quote|argeop)|a(c(cent(under)?|tiontype)|l(t(text|img(-(height|valign|width))?)|ign(mentscope)?))|r(space|ow(spa(n|cing)|lines|align)|quote)|groupalign|x(link:href|mlns)|m(in(size|labelspacing)|ovablelimits|a(th(size|color|variant|background)|xsize))|bevelled)(?![\\w:-])",644"beginCaptures": {645"0": {646"name": "entity.other.attribute-name.html"647}648},649"end": "(?=\\s*+[^=\\s])",650"name": "meta.attribute.$1.html",651"patterns": [652{653"include": "#attribute-interior"654}655]656},657{658"begin": "([^\\x{0020}\"'<>/=\\x{0000}-\\x{001F}\\x{007F}-\\x{009F}\\x{FDD0}-\\x{FDEF}\\x{FFFE}\\x{FFFF}\\x{1FFFE}\\x{1FFFF}\\x{2FFFE}\\x{2FFFF}\\x{3FFFE}\\x{3FFFF}\\x{4FFFE}\\x{4FFFF}\\x{5FFFE}\\x{5FFFF}\\x{6FFFE}\\x{6FFFF}\\x{7FFFE}\\x{7FFFF}\\x{8FFFE}\\x{8FFFF}\\x{9FFFE}\\x{9FFFF}\\x{AFFFE}\\x{AFFFF}\\x{BFFFE}\\x{BFFFF}\\x{CFFFE}\\x{CFFFF}\\x{DFFFE}\\x{DFFFF}\\x{EFFFE}\\x{EFFFF}\\x{FFFFE}\\x{FFFFF}\\x{10FFFE}\\x{10FFFF}]+)",659"beginCaptures": {660"0": {661"name": "entity.other.attribute-name.html"662}663},664"comment": "Anything else that is valid",665"end": "(?=\\s*+[^=\\s])",666"name": "meta.attribute.unrecognized.$1.html",667"patterns": [668{669"include": "#attribute-interior"670}671]672},673{674"match": "[^\\s>]+",675"name": "invalid.illegal.character-not-allowed-here.html"676}677]678},679"tags": {680"patterns": [681{682"include": "#comment"683},684{685"include": "#cdata"686},687{688"captures": {689"0": {690"name": "meta.tag.structure.math.$2.void.html"691},692"1": {693"name": "punctuation.definition.tag.begin.html"694},695"2": {696"name": "entity.name.tag.html"697},698"3": {699"patterns": [700{701"include": "#attribute"702}703]704},705"5": {706"name": "punctuation.definition.tag.end.html"707}708},709"match": "(?i)(<)(annotation|annotation-xml|semantics|menclose|merror|mfenced|mfrac|mpadded|mphantom|mroot|mrow|msqrt|mstyle|mmultiscripts|mover|mprescripts|msub|msubsup|msup|munder|munderover|none|mlabeledtr|mtable|mtd|mtr|mlongdiv|mscarries|mscarry|msgroup|msline|msrow|mstack|maction)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(/>))",710"name": "meta.element.structure.math.$2.html"711},712{713"begin": "(?i)(<)(annotation|annotation-xml|semantics|menclose|merror|mfenced|mfrac|mpadded|mphantom|mroot|mrow|msqrt|mstyle|mmultiscripts|mover|mprescripts|msub|msubsup|msup|munder|munderover|none|mlabeledtr|mtable|mtd|mtr|mlongdiv|mscarries|mscarry|msgroup|msline|msrow|mstack|maction)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(>))?",714"beginCaptures": {715"0": {716"name": "meta.tag.structure.math.$2.start.html"717},718"1": {719"name": "punctuation.definition.tag.begin.html"720},721"2": {722"name": "entity.name.tag.html"723},724"3": {725"patterns": [726{727"include": "#attribute"728}729]730},731"5": {732"name": "punctuation.definition.tag.end.html"733}734},735"end": "(?i)(</)(\\2)\\s*(>)|(/>)|(?=</\\w+)",736"endCaptures": {737"0": {738"name": "meta.tag.structure.math.$2.end.html"739},740"1": {741"name": "punctuation.definition.tag.begin.html"742},743"2": {744"name": "entity.name.tag.html"745},746"3": {747"name": "punctuation.definition.tag.end.html"748},749"4": {750"name": "punctuation.definition.tag.end.html"751}752},753"name": "meta.element.structure.math.$2.html",754"patterns": [755{756"begin": "(?<!>)\\G",757"end": "(?=/>)|>",758"endCaptures": {759"0": {760"name": "punctuation.definition.tag.end.html"761}762},763"name": "meta.tag.structure.start.html",764"patterns": [765{766"include": "#attribute"767}768]769},770{771"include": "#tags"772}773]774},775{776"captures": {777"0": {778"name": "meta.tag.inline.math.$2.void.html"779},780"1": {781"name": "punctuation.definition.tag.begin.html"782},783"2": {784"name": "entity.name.tag.html"785},786"3": {787"patterns": [788{789"include": "#attribute"790}791]792},793"5": {794"name": "punctuation.definition.tag.end.html"795}796},797"match": "(?i)(<)(mi|mn|mo|ms|mspace|mtext|maligngroup|malignmark)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(/>))",798"name": "meta.element.inline.math.$2.html"799},800{801"begin": "(?i)(<)(mi|mn|mo|ms|mspace|mtext|maligngroup|malignmark)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(>))?",802"beginCaptures": {803"0": {804"name": "meta.tag.inline.math.$2.start.html"805},806"1": {807"name": "punctuation.definition.tag.begin.html"808},809"2": {810"name": "entity.name.tag.html"811},812"3": {813"patterns": [814{815"include": "#attribute"816}817]818},819"5": {820"name": "punctuation.definition.tag.end.html"821}822},823"end": "(?i)(</)(\\2)\\s*(>)|(/>)|(?=</\\w+)",824"endCaptures": {825"0": {826"name": "meta.tag.inline.math.$2.end.html"827},828"1": {829"name": "punctuation.definition.tag.begin.html"830},831"2": {832"name": "entity.name.tag.html"833},834"3": {835"name": "punctuation.definition.tag.end.html"836},837"4": {838"name": "punctuation.definition.tag.end.html"839}840},841"name": "meta.element.inline.math.$2.html",842"patterns": [843{844"begin": "(?<!>)\\G",845"end": "(?=/>)|>",846"endCaptures": {847"0": {848"name": "punctuation.definition.tag.end.html"849}850},851"name": "meta.tag.inline.start.html",852"patterns": [853{854"include": "#attribute"855}856]857},858{859"include": "#tags"860}861]862},863{864"captures": {865"0": {866"name": "meta.tag.object.math.$2.void.html"867},868"1": {869"name": "punctuation.definition.tag.begin.html"870},871"2": {872"name": "entity.name.tag.html"873},874"3": {875"patterns": [876{877"include": "#attribute"878}879]880},881"5": {882"name": "punctuation.definition.tag.end.html"883}884},885"match": "(?i)(<)(mglyph)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(/>))",886"name": "meta.element.object.math.$2.html"887},888{889"begin": "(?i)(<)(mglyph)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(>))?",890"beginCaptures": {891"0": {892"name": "meta.tag.object.math.$2.start.html"893},894"1": {895"name": "punctuation.definition.tag.begin.html"896},897"2": {898"name": "entity.name.tag.html"899},900"3": {901"patterns": [902{903"include": "#attribute"904}905]906},907"5": {908"name": "punctuation.definition.tag.end.html"909}910},911"end": "(?i)(</)(\\2)\\s*(>)|(/>)|(?=</\\w+)",912"endCaptures": {913"0": {914"name": "meta.tag.object.math.$2.end.html"915},916"1": {917"name": "punctuation.definition.tag.begin.html"918},919"2": {920"name": "entity.name.tag.html"921},922"3": {923"name": "punctuation.definition.tag.end.html"924},925"4": {926"name": "punctuation.definition.tag.end.html"927}928},929"name": "meta.element.object.math.$2.html",930"patterns": [931{932"begin": "(?<!>)\\G",933"end": "(?=/>)|>",934"endCaptures": {935"0": {936"name": "punctuation.definition.tag.end.html"937}938},939"name": "meta.tag.object.start.html",940"patterns": [941{942"include": "#attribute"943}944]945},946{947"include": "#tags"948}949]950},951{952"captures": {953"0": {954"name": "meta.tag.other.invalid.void.html"955},956"1": {957"name": "punctuation.definition.tag.begin.html"958},959"2": {960"name": "entity.name.tag.html"961},962"3": {963"name": "invalid.illegal.unrecognized-tag.html"964},965"4": {966"patterns": [967{968"include": "#attribute"969}970]971},972"6": {973"name": "punctuation.definition.tag.end.html"974}975},976"match": "(?i)(<)(([\\w:]+))(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(/>))",977"name": "meta.element.other.invalid.html"978},979{980"begin": "(?i)(<)((\\w[^\\s>]*))(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(>))?",981"beginCaptures": {982"0": {983"name": "meta.tag.other.invalid.start.html"984},985"1": {986"name": "punctuation.definition.tag.begin.html"987},988"2": {989"name": "entity.name.tag.html"990},991"3": {992"name": "invalid.illegal.unrecognized-tag.html"993},994"4": {995"patterns": [996{997"include": "#attribute"998}999]1000},1001"6": {1002"name": "punctuation.definition.tag.end.html"1003}1004},1005"end": "(?i)(</)((\\2))\\s*(>)|(/>)|(?=</\\w+)",1006"endCaptures": {1007"0": {1008"name": "meta.tag.other.invalid.end.html"1009},1010"1": {1011"name": "punctuation.definition.tag.begin.html"1012},1013"2": {1014"name": "entity.name.tag.html"1015},1016"3": {1017"name": "invalid.illegal.unrecognized-tag.html"1018},1019"4": {1020"name": "punctuation.definition.tag.end.html"1021},1022"5": {1023"name": "punctuation.definition.tag.end.html"1024}1025},1026"name": "meta.element.other.invalid.html",1027"patterns": [1028{1029"begin": "(?<!>)\\G",1030"end": "(?=/>)|>",1031"endCaptures": {1032"0": {1033"name": "punctuation.definition.tag.end.html"1034}1035},1036"name": "meta.tag.other.invalid.start.html",1037"patterns": [1038{1039"include": "#attribute"1040}1041]1042},1043{1044"include": "#tags"1045}1046]1047},1048{1049"include": "#tags-invalid"1050}1051]1052}1053}1054},1055"svg": {1056"patterns": [1057{1058"begin": "(?i)(<)(svg)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(>))?",1059"beginCaptures": {1060"0": {1061"name": "meta.tag.structure.$2.start.html"1062},1063"1": {1064"name": "punctuation.definition.tag.begin.html"1065},1066"2": {1067"name": "entity.name.tag.html"1068},1069"3": {1070"patterns": [1071{1072"include": "#attribute"1073}1074]1075},1076"5": {1077"name": "punctuation.definition.tag.end.html"1078}1079},1080"end": "(?i)(</)(\\2)\\s*(>)",1081"endCaptures": {1082"0": {1083"name": "meta.tag.structure.$2.end.html"1084},1085"1": {1086"name": "punctuation.definition.tag.begin.html"1087},1088"2": {1089"name": "entity.name.tag.html"1090},1091"3": {1092"name": "punctuation.definition.tag.end.html"1093}1094},1095"name": "meta.element.structure.$2.html",1096"patterns": [1097{1098"begin": "(?<!>)\\G",1099"end": ">",1100"endCaptures": {1101"0": {1102"name": "punctuation.definition.tag.end.html"1103}1104},1105"name": "meta.tag.structure.start.html",1106"patterns": [1107{1108"include": "#attribute"1109}1110]1111},1112{1113"include": "#tags"1114}1115]1116}1117],1118"repository": {1119"attribute": {1120"patterns": [1121{1122"begin": "(s(hape-rendering|ystemLanguage|cale|t(yle|itchTiles|op-(color|opacity)|dDeviation|em(h|v)|artOffset|r(i(ng|kethrough-(thickness|position))|oke(-(opacity|dash(offset|array)|width|line(cap|join)|miterlimit))?))|urfaceScale|p(e(cular(Constant|Exponent)|ed)|acing|readMethod)|eed|lope)|h(oriz-(origin-x|adv-x)|eight|anging|ref(lang)?)|y(1|2|ChannelSelector)?|n(umOctaves|ame)|c(y|o(ntentS(criptType|tyleType)|lor(-(interpolation(-filters)?|profile|rendering))?)|ursor|l(ip(-(path|rule)|PathUnits)?|ass)|a(p-height|lcMode)|x)|t(ype|o|ext(-(decoration|anchor|rendering)|Length)|a(rget(X|Y)?|b(index|leValues))|ransform)|i(n(tercept|2)?|d(eographic)?|mage-rendering)|z(oomAndPan)?|o(p(erator|acity)|ver(flow|line-(thickness|position))|ffset|r(i(ent(ation)?|gin)|der))|d(y|i(splay|visor|ffuseConstant|rection)|ominant-baseline|ur|e(scent|celerate)|x)?|u(1|n(i(code(-(range|bidi))?|ts-per-em)|derline-(thickness|position))|2)|p(ing|oint(s(At(X|Y|Z))?|er-events)|a(nose-1|t(h(Length)?|tern(ContentUnits|Transform|Units))|int-order)|r(imitiveUnits|eserveA(spectRatio|lpha)))|e(n(d|able-background)|dgeMode|levation|x(ternalResourcesRequired|ponent))|v(i(sibility|ew(Box|Target))|-(hanging|ideographic|alphabetic|mathematical)|e(ctor-effect|r(sion|t-(origin-(y|x)|adv-y)))|alues)|k(1|2|3|e(y(Splines|Times|Points)|rn(ing|el(Matrix|UnitLength)))|4)?|f(y|il(ter(Res|Units)?|l(-(opacity|rule))?)|o(nt-(s(t(yle|retch)|ize(-adjust)?)|variant|family|weight)|rmat)|lood-(color|opacity)|r(om)?|x)|w(idth(s)?|ord-spacing|riting-mode)|l(i(ghting-color|mitingConeAngle)|ocal|e(ngthAdjust|tter-spacing)|ang)|a(scent|cc(umulate|ent-height)|ttribute(Name|Type)|zimuth|dditive|utoReverse|l(ignment-baseline|phabetic|lowReorder)|rabic-form|mplitude)|r(y|otate|e(s(tart|ult)|ndering-intent|peat(Count|Dur)|quired(Extensions|Features)|f(X|Y|errerPolicy)|l)|adius|x)?|g(1|2|lyph(Ref|-(name|orientation-(horizontal|vertical)))|radient(Transform|Units))|x(1|2|ChannelSelector|-height|link:(show|href|t(ype|itle)|a(ctuate|rcrole)|role)|ml:(space|lang|base))?|m(in|ode|e(thod|dia)|a(sk(ContentUnits|Units)?|thematical|rker(Height|-(start|end|mid)|Units|Width)|x))|b(y|ias|egin|ase(Profile|line-shift|Frequency)|box))(?![\\w:-])",1123"beginCaptures": {1124"0": {1125"name": "entity.other.attribute-name.html"1126}1127},1128"end": "(?=\\s*+[^=\\s])",1129"name": "meta.attribute.$1.html",1130"patterns": [1131{1132"include": "#attribute-interior"1133}1134]1135},1136{1137"begin": "([^\\x{0020}\"'<>/=\\x{0000}-\\x{001F}\\x{007F}-\\x{009F}\\x{FDD0}-\\x{FDEF}\\x{FFFE}\\x{FFFF}\\x{1FFFE}\\x{1FFFF}\\x{2FFFE}\\x{2FFFF}\\x{3FFFE}\\x{3FFFF}\\x{4FFFE}\\x{4FFFF}\\x{5FFFE}\\x{5FFFF}\\x{6FFFE}\\x{6FFFF}\\x{7FFFE}\\x{7FFFF}\\x{8FFFE}\\x{8FFFF}\\x{9FFFE}\\x{9FFFF}\\x{AFFFE}\\x{AFFFF}\\x{BFFFE}\\x{BFFFF}\\x{CFFFE}\\x{CFFFF}\\x{DFFFE}\\x{DFFFF}\\x{EFFFE}\\x{EFFFF}\\x{FFFFE}\\x{FFFFF}\\x{10FFFE}\\x{10FFFF}]+)",1138"beginCaptures": {1139"0": {1140"name": "entity.other.attribute-name.html"1141}1142},1143"comment": "Anything else that is valid",1144"end": "(?=\\s*+[^=\\s])",1145"name": "meta.attribute.unrecognized.$1.html",1146"patterns": [1147{1148"include": "#attribute-interior"1149}1150]1151},1152{1153"match": "[^\\s>]+",1154"name": "invalid.illegal.character-not-allowed-here.html"1155}1156]1157},1158"tags": {1159"patterns": [1160{1161"include": "#comment"1162},1163{1164"include": "#cdata"1165},1166{1167"captures": {1168"0": {1169"name": "meta.tag.metadata.svg.$2.void.html"1170},1171"1": {1172"name": "punctuation.definition.tag.begin.html"1173},1174"2": {1175"name": "entity.name.tag.html"1176},1177"3": {1178"patterns": [1179{1180"include": "#attribute"1181}1182]1183},1184"5": {1185"name": "punctuation.definition.tag.end.html"1186}1187},1188"match": "(?i)(<)(color-profile|desc|metadata|script|style|title)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(/>))",1189"name": "meta.element.metadata.svg.$2.html"1190},1191{1192"begin": "(?i)(<)(color-profile|desc|metadata|script|style|title)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(>))?",1193"beginCaptures": {1194"0": {1195"name": "meta.tag.metadata.svg.$2.start.html"1196},1197"1": {1198"name": "punctuation.definition.tag.begin.html"1199},1200"2": {1201"name": "entity.name.tag.html"1202},1203"3": {1204"patterns": [1205{1206"include": "#attribute"1207}1208]1209},1210"5": {1211"name": "punctuation.definition.tag.end.html"1212}1213},1214"end": "(?i)(</)(\\2)\\s*(>)|(/>)|(?=</\\w+)",1215"endCaptures": {1216"0": {1217"name": "meta.tag.metadata.svg.$2.end.html"1218},1219"1": {1220"name": "punctuation.definition.tag.begin.html"1221},1222"2": {1223"name": "entity.name.tag.html"1224},1225"3": {1226"name": "punctuation.definition.tag.end.html"1227},1228"4": {1229"name": "punctuation.definition.tag.end.html"1230}1231},1232"name": "meta.element.metadata.svg.$2.html",1233"patterns": [1234{1235"begin": "(?<!>)\\G",1236"end": "(?=/>)|>",1237"endCaptures": {1238"0": {1239"name": "punctuation.definition.tag.end.html"1240}1241},1242"name": "meta.tag.metadata.start.html",1243"patterns": [1244{1245"include": "#attribute"1246}1247]1248},1249{1250"include": "#tags"1251}1252]1253},1254{1255"captures": {1256"0": {1257"name": "meta.tag.structure.svg.$2.void.html"1258},1259"1": {1260"name": "punctuation.definition.tag.begin.html"1261},1262"2": {1263"name": "entity.name.tag.html"1264},1265"3": {1266"patterns": [1267{1268"include": "#attribute"1269}1270]1271},1272"5": {1273"name": "punctuation.definition.tag.end.html"1274}1275},1276"match": "(?i)(<)(animateMotion|clipPath|defs|feComponentTransfer|feDiffuseLighting|feMerge|feSpecularLighting|filter|g|hatch|linearGradient|marker|mask|mesh|meshgradient|meshpatch|meshrow|pattern|radialGradient|switch|text|textPath)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(/>))",1277"name": "meta.element.structure.svg.$2.html"1278},1279{1280"begin": "(?i)(<)(animateMotion|clipPath|defs|feComponentTransfer|feDiffuseLighting|feMerge|feSpecularLighting|filter|g|hatch|linearGradient|marker|mask|mesh|meshgradient|meshpatch|meshrow|pattern|radialGradient|switch|text|textPath)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(>))?",1281"beginCaptures": {1282"0": {1283"name": "meta.tag.structure.svg.$2.start.html"1284},1285"1": {1286"name": "punctuation.definition.tag.begin.html"1287},1288"2": {1289"name": "entity.name.tag.html"1290},1291"3": {1292"patterns": [1293{1294"include": "#attribute"1295}1296]1297},1298"5": {1299"name": "punctuation.definition.tag.end.html"1300}1301},1302"end": "(?i)(</)(\\2)\\s*(>)|(/>)|(?=</\\w+)",1303"endCaptures": {1304"0": {1305"name": "meta.tag.structure.svg.$2.end.html"1306},1307"1": {1308"name": "punctuation.definition.tag.begin.html"1309},1310"2": {1311"name": "entity.name.tag.html"1312},1313"3": {1314"name": "punctuation.definition.tag.end.html"1315},1316"4": {1317"name": "punctuation.definition.tag.end.html"1318}1319},1320"name": "meta.element.structure.svg.$2.html",1321"patterns": [1322{1323"begin": "(?<!>)\\G",1324"end": "(?=/>)|>",1325"endCaptures": {1326"0": {1327"name": "punctuation.definition.tag.end.html"1328}1329},1330"name": "meta.tag.structure.start.html",1331"patterns": [1332{1333"include": "#attribute"1334}1335]1336},1337{1338"include": "#tags"1339}1340]1341},1342{1343"captures": {1344"0": {1345"name": "meta.tag.inline.svg.$2.void.html"1346},1347"1": {1348"name": "punctuation.definition.tag.begin.html"1349},1350"2": {1351"name": "entity.name.tag.html"1352},1353"3": {1354"patterns": [1355{1356"include": "#attribute"1357}1358]1359},1360"5": {1361"name": "punctuation.definition.tag.end.html"1362}1363},1364"match": "(?i)(<)(a|animate|discard|feBlend|feColorMatrix|feComposite|feConvolveMatrix|feDisplacementMap|feDistantLight|feDropShadow|feFlood|feFuncA|feFuncB|feFuncG|feFuncR|feGaussianBlur|feMergeNode|feMorphology|feOffset|fePointLight|feSpotLight|feTile|feTurbulence|hatchPath|mpath|set|solidcolor|stop|tspan)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(/>))",1365"name": "meta.element.inline.svg.$2.html"1366},1367{1368"begin": "(?i)(<)(a|animate|discard|feBlend|feColorMatrix|feComposite|feConvolveMatrix|feDisplacementMap|feDistantLight|feDropShadow|feFlood|feFuncA|feFuncB|feFuncG|feFuncR|feGaussianBlur|feMergeNode|feMorphology|feOffset|fePointLight|feSpotLight|feTile|feTurbulence|hatchPath|mpath|set|solidcolor|stop|tspan)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(>))?",1369"beginCaptures": {1370"0": {1371"name": "meta.tag.inline.svg.$2.start.html"1372},1373"1": {1374"name": "punctuation.definition.tag.begin.html"1375},1376"2": {1377"name": "entity.name.tag.html"1378},1379"3": {1380"patterns": [1381{1382"include": "#attribute"1383}1384]1385},1386"5": {1387"name": "punctuation.definition.tag.end.html"1388}1389},1390"end": "(?i)(</)(\\2)\\s*(>)|(/>)|(?=</\\w+)",1391"endCaptures": {1392"0": {1393"name": "meta.tag.inline.svg.$2.end.html"1394},1395"1": {1396"name": "punctuation.definition.tag.begin.html"1397},1398"2": {1399"name": "entity.name.tag.html"1400},1401"3": {1402"name": "punctuation.definition.tag.end.html"1403},1404"4": {1405"name": "punctuation.definition.tag.end.html"1406}1407},1408"name": "meta.element.inline.svg.$2.html",1409"patterns": [1410{1411"begin": "(?<!>)\\G",1412"end": "(?=/>)|>",1413"endCaptures": {1414"0": {1415"name": "punctuation.definition.tag.end.html"1416}1417},1418"name": "meta.tag.inline.start.html",1419"patterns": [1420{1421"include": "#attribute"1422}1423]1424},1425{1426"include": "#tags"1427}1428]1429},1430{1431"captures": {1432"0": {1433"name": "meta.tag.object.svg.$2.void.html"1434},1435"1": {1436"name": "punctuation.definition.tag.begin.html"1437},1438"2": {1439"name": "entity.name.tag.html"1440},1441"3": {1442"patterns": [1443{1444"include": "#attribute"1445}1446]1447},1448"5": {1449"name": "punctuation.definition.tag.end.html"1450}1451},1452"match": "(?i)(<)(circle|ellipse|feImage|foreignObject|image|line|path|polygon|polyline|rect|symbol|use|view)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(/>))",1453"name": "meta.element.object.svg.$2.html"1454},1455{1456"begin": "(?i)(<)(a|circle|ellipse|feImage|foreignObject|image|line|path|polygon|polyline|rect|symbol|use|view)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(>))?",1457"beginCaptures": {1458"0": {1459"name": "meta.tag.object.svg.$2.start.html"1460},1461"1": {1462"name": "punctuation.definition.tag.begin.html"1463},1464"2": {1465"name": "entity.name.tag.html"1466},1467"3": {1468"patterns": [1469{1470"include": "#attribute"1471}1472]1473},1474"5": {1475"name": "punctuation.definition.tag.end.html"1476}1477},1478"end": "(?i)(</)(\\2)\\s*(>)|(/>)|(?=</\\w+)",1479"endCaptures": {1480"0": {1481"name": "meta.tag.object.svg.$2.end.html"1482},1483"1": {1484"name": "punctuation.definition.tag.begin.html"1485},1486"2": {1487"name": "entity.name.tag.html"1488},1489"3": {1490"name": "punctuation.definition.tag.end.html"1491},1492"4": {1493"name": "punctuation.definition.tag.end.html"1494}1495},1496"name": "meta.element.object.svg.$2.html",1497"patterns": [1498{1499"begin": "(?<!>)\\G",1500"end": "(?=/>)|>",1501"endCaptures": {1502"0": {1503"name": "punctuation.definition.tag.end.html"1504}1505},1506"name": "meta.tag.object.start.html",1507"patterns": [1508{1509"include": "#attribute"1510}1511]1512},1513{1514"include": "#tags"1515}1516]1517},1518{1519"captures": {1520"0": {1521"name": "meta.tag.other.svg.$2.void.html"1522},1523"1": {1524"name": "punctuation.definition.tag.begin.html"1525},1526"2": {1527"name": "entity.name.tag.html"1528},1529"3": {1530"name": "invalid.deprecated.html"1531},1532"4": {1533"patterns": [1534{1535"include": "#attribute"1536}1537]1538},1539"6": {1540"name": "punctuation.definition.tag.end.html"1541}1542},1543"match": "(?i)(<)((altGlyph|altGlyphDef|altGlyphItem|animateColor|animateTransform|cursor|font|font-face|font-face-format|font-face-name|font-face-src|font-face-uri|glyph|glyphRef|hkern|missing-glyph|tref|vkern))(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(/>))",1544"name": "meta.element.other.svg.$2.html"1545},1546{1547"begin": "(?i)(<)((altGlyph|altGlyphDef|altGlyphItem|animateColor|animateTransform|cursor|font|font-face|font-face-format|font-face-name|font-face-src|font-face-uri|glyph|glyphRef|hkern|missing-glyph|tref|vkern))(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(>))?",1548"beginCaptures": {1549"0": {1550"name": "meta.tag.other.svg.$2.start.html"1551},1552"1": {1553"name": "punctuation.definition.tag.begin.html"1554},1555"2": {1556"name": "entity.name.tag.html"1557},1558"3": {1559"name": "invalid.deprecated.html"1560},1561"4": {1562"patterns": [1563{1564"include": "#attribute"1565}1566]1567},1568"6": {1569"name": "punctuation.definition.tag.end.html"1570}1571},1572"end": "(?i)(</)((\\2))\\s*(>)|(/>)|(?=</\\w+)",1573"endCaptures": {1574"0": {1575"name": "meta.tag.other.svg.$2.end.html"1576},1577"1": {1578"name": "punctuation.definition.tag.begin.html"1579},1580"2": {1581"name": "entity.name.tag.html"1582},1583"3": {1584"name": "invalid.deprecated.html"1585},1586"4": {1587"name": "punctuation.definition.tag.end.html"1588},1589"5": {1590"name": "punctuation.definition.tag.end.html"1591}1592},1593"name": "meta.element.other.svg.$2.html",1594"patterns": [1595{1596"begin": "(?<!>)\\G",1597"end": "(?=/>)|>",1598"endCaptures": {1599"0": {1600"name": "punctuation.definition.tag.end.html"1601}1602},1603"name": "meta.tag.other.start.html",1604"patterns": [1605{1606"include": "#attribute"1607}1608]1609},1610{1611"include": "#tags"1612}1613]1614},1615{1616"captures": {1617"0": {1618"name": "meta.tag.other.invalid.void.html"1619},1620"1": {1621"name": "punctuation.definition.tag.begin.html"1622},1623"2": {1624"name": "entity.name.tag.html"1625},1626"3": {1627"name": "invalid.illegal.unrecognized-tag.html"1628},1629"4": {1630"patterns": [1631{1632"include": "#attribute"1633}1634]1635},1636"6": {1637"name": "punctuation.definition.tag.end.html"1638}1639},1640"match": "(?i)(<)(([\\w:]+))(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(/>))",1641"name": "meta.element.other.invalid.html"1642},1643{1644"begin": "(?i)(<)((\\w[^\\s>]*))(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(>))?",1645"beginCaptures": {1646"0": {1647"name": "meta.tag.other.invalid.start.html"1648},1649"1": {1650"name": "punctuation.definition.tag.begin.html"1651},1652"2": {1653"name": "entity.name.tag.html"1654},1655"3": {1656"name": "invalid.illegal.unrecognized-tag.html"1657},1658"4": {1659"patterns": [1660{1661"include": "#attribute"1662}1663]1664},1665"6": {1666"name": "punctuation.definition.tag.end.html"1667}1668},1669"end": "(?i)(</)((\\2))\\s*(>)|(/>)|(?=</\\w+)",1670"endCaptures": {1671"0": {1672"name": "meta.tag.other.invalid.end.html"1673},1674"1": {1675"name": "punctuation.definition.tag.begin.html"1676},1677"2": {1678"name": "entity.name.tag.html"1679},1680"3": {1681"name": "invalid.illegal.unrecognized-tag.html"1682},1683"4": {1684"name": "punctuation.definition.tag.end.html"1685},1686"5": {1687"name": "punctuation.definition.tag.end.html"1688}1689},1690"name": "meta.element.other.invalid.html",1691"patterns": [1692{1693"begin": "(?<!>)\\G",1694"end": "(?=/>)|>",1695"endCaptures": {1696"0": {1697"name": "punctuation.definition.tag.end.html"1698}1699},1700"name": "meta.tag.other.invalid.start.html",1701"patterns": [1702{1703"include": "#attribute"1704}1705]1706},1707{1708"include": "#tags"1709}1710]1711},1712{1713"include": "#tags-invalid"1714}1715]1716}1717}1718},1719"tags-invalid": {1720"patterns": [1721{1722"begin": "(</?)((\\w[^\\s>]*))(?<!/)",1723"beginCaptures": {1724"1": {1725"name": "punctuation.definition.tag.begin.html"1726},1727"2": {1728"name": "entity.name.tag.html"1729},1730"3": {1731"name": "invalid.illegal.unrecognized-tag.html"1732}1733},1734"end": "((?: ?/)?>)",1735"endCaptures": {1736"1": {1737"name": "punctuation.definition.tag.end.html"1738}1739},1740"name": "meta.tag.other.$2.html",1741"patterns": [1742{1743"include": "#attribute"1744}1745]1746}1747]1748},1749"tags-valid": {1750"patterns": [1751{1752"begin": "(^[ \\t]+)?(?=<(?i:style)\\b(?!-))",1753"beginCaptures": {1754"1": {1755"name": "punctuation.whitespace.embedded.leading.html"1756}1757},1758"end": "(?!\\G)([ \\t]*$\\n?)?",1759"endCaptures": {1760"1": {1761"name": "punctuation.whitespace.embedded.trailing.html"1762}1763},1764"patterns": [1765{1766"begin": "(?i)(<)(style)(?=\\s|/?>)",1767"beginCaptures": {1768"0": {1769"name": "meta.tag.metadata.style.start.html"1770},1771"1": {1772"name": "punctuation.definition.tag.begin.html"1773},1774"2": {1775"name": "entity.name.tag.html"1776}1777},1778"end": "(?i)((<)/)(style)\\s*(>)",1779"endCaptures": {1780"0": {1781"name": "meta.tag.metadata.style.end.html"1782},1783"1": {1784"name": "punctuation.definition.tag.begin.html"1785},1786"2": {1787"name": "source.css-ignored-vscode"1788},1789"3": {1790"name": "entity.name.tag.html"1791},1792"4": {1793"name": "punctuation.definition.tag.end.html"1794}1795},1796"name": "meta.embedded.block.html",1797"patterns": [1798{1799"begin": "\\G",1800"captures": {1801"1": {1802"name": "punctuation.definition.tag.end.html"1803}1804},1805"end": "(>)",1806"name": "meta.tag.metadata.style.start.html",1807"patterns": [1808{1809"include": "#attribute"1810}1811]1812},1813{1814"begin": "(?!\\G)",1815"end": "(?=</(?i:style))",1816"name": "source.css",1817"patterns": [1818{1819"include": "source.css"1820}1821]1822}1823]1824}1825]1826},1827{1828"begin": "(^[ \\t]+)?(?=<(?i:script)\\b(?!-))",1829"beginCaptures": {1830"1": {1831"name": "punctuation.whitespace.embedded.leading.html"1832}1833},1834"end": "(?!\\G)([ \\t]*$\\n?)?",1835"endCaptures": {1836"1": {1837"name": "punctuation.whitespace.embedded.trailing.html"1838}1839},1840"patterns": [1841{1842"begin": "(<)((?i:script))\\b",1843"beginCaptures": {1844"0": {1845"name": "meta.tag.metadata.script.start.html"1846},1847"1": {1848"name": "punctuation.definition.tag.begin.html"1849},1850"2": {1851"name": "entity.name.tag.html"1852}1853},1854"end": "(/)((?i:script))(>)",1855"endCaptures": {1856"0": {1857"name": "meta.tag.metadata.script.end.html"1858},1859"1": {1860"name": "punctuation.definition.tag.begin.html"1861},1862"2": {1863"name": "entity.name.tag.html"1864},1865"3": {1866"name": "punctuation.definition.tag.end.html"1867}1868},1869"name": "meta.embedded.block.html",1870"patterns": [1871{1872"begin": "\\G",1873"end": "(?=/)",1874"patterns": [1875{1876"begin": "(>)",1877"beginCaptures": {1878"0": {1879"name": "meta.tag.metadata.script.start.html"1880},1881"1": {1882"name": "punctuation.definition.tag.end.html"1883}1884},1885"end": "((<))(?=/(?i:script))",1886"endCaptures": {1887"0": {1888"name": "meta.tag.metadata.script.end.html"1889},1890"1": {1891"name": "punctuation.definition.tag.begin.html"1892},1893"2": {1894"name": "source.js-ignored-vscode"1895}1896},1897"patterns": [1898{1899"begin": "\\G",1900"end": "(?=</(?i:script))",1901"name": "source.js",1902"patterns": [1903{1904"begin": "(^[ \\t]+)?(?=//)",1905"beginCaptures": {1906"1": {1907"name": "punctuation.whitespace.comment.leading.js"1908}1909},1910"end": "(?!\\G)",1911"patterns": [1912{1913"begin": "//",1914"beginCaptures": {1915"0": {1916"name": "punctuation.definition.comment.js"1917}1918},1919"end": "(?=</script)|\\n",1920"name": "comment.line.double-slash.js"1921}1922]1923},1924{1925"begin": "/\\*",1926"captures": {1927"0": {1928"name": "punctuation.definition.comment.js"1929}1930},1931"end": "\\*/|(?=</script)",1932"name": "comment.block.js"1933},1934{1935"include": "source.js"1936}1937]1938}1939]1940},1941{1942"begin": "\\G",1943"end": "(?ix:\n\t\t\t\t\t\t\t\t\t\t\t\t(?=>\t\t\t\t\t\t\t\t\t\t\t# Tag without type attribute\n\t\t\t\t\t\t\t\t\t\t\t\t | type(?=[\\s=])\n\t\t\t\t\t\t\t\t\t\t\t\t \t(?!\\s*=\\s*\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t''\t\t\t\t\t\t\t\t# Empty\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t | \"\"\t\t\t\t\t\t\t\t\t# Values\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t | ('|\"|)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttext/\t\t\t\t\t\t\t# Text mime-types\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tjavascript(1\\.[0-5])?\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t | x-javascript\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t | jscript\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t | livescript\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t | (x-)?ecmascript\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t | babel\t\t\t\t\t\t# Javascript variant currently\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t\t\t\t\t\t\t\t# recognized as such\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t | application/\t\t\t\t\t# Application mime-types\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t(x-)?javascript\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t | (x-)?ecmascript\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t | module\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\\s\"'>]\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t)",1944"name": "meta.tag.metadata.script.start.html",1945"patterns": [1946{1947"include": "#attribute"1948}1949]1950},1951{1952"begin": "(?ix:\n\t\t\t\t\t\t\t\t\t\t\t\t(?=\n\t\t\t\t\t\t\t\t\t\t\t\t\ttype\\s*=\\s*\n\t\t\t\t\t\t\t\t\t\t\t\t\t('|\"|)\n\t\t\t\t\t\t\t\t\t\t\t\t\ttext/\n\t\t\t\t\t\t\t\t\t\t\t\t\t(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tx-handlebars\n\t\t\t\t\t\t\t\t\t\t\t\t\t | (x-(handlebars-)?|ng-)?template\n\t\t\t\t\t\t\t\t\t\t\t\t\t | html\n\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t[\\s\"'>]\n\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t)",1953"end": "((<))(?=/(?i:script))",1954"endCaptures": {1955"0": {1956"name": "meta.tag.metadata.script.end.html"1957},1958"1": {1959"name": "punctuation.definition.tag.begin.html"1960},1961"2": {1962"name": "text.html.basic"1963}1964},1965"patterns": [1966{1967"begin": "\\G",1968"end": "(>)",1969"endCaptures": {1970"1": {1971"name": "punctuation.definition.tag.end.html"1972}1973},1974"name": "meta.tag.metadata.script.start.html",1975"patterns": [1976{1977"include": "#attribute"1978}1979]1980},1981{1982"begin": "(?!\\G)",1983"end": "(?=</(?i:script))",1984"name": "text.html.basic",1985"patterns": [1986{1987"include": "text.html.basic"1988}1989]1990}1991]1992},1993{1994"begin": "(?=(?i:type))",1995"end": "(<)(?=/(?i:script))",1996"endCaptures": {1997"0": {1998"name": "meta.tag.metadata.script.end.html"1999},2000"1": {2001"name": "punctuation.definition.tag.begin.html"2002}2003},2004"patterns": [2005{2006"begin": "\\G",2007"end": "(>)",2008"endCaptures": {2009"1": {2010"name": "punctuation.definition.tag.end.html"2011}2012},2013"name": "meta.tag.metadata.script.start.html",2014"patterns": [2015{2016"include": "#attribute"2017}2018]2019},2020{2021"begin": "(?!\\G)",2022"end": "(?=</(?i:script))",2023"name": "source.unknown"2024}2025]2026}2027]2028}2029]2030}2031]2032},2033{2034"begin": "(?i)(<)(base|link|meta)(?=\\s|/?>)",2035"beginCaptures": {2036"1": {2037"name": "punctuation.definition.tag.begin.html"2038},2039"2": {2040"name": "entity.name.tag.html"2041}2042},2043"end": "/?>",2044"endCaptures": {2045"0": {2046"name": "punctuation.definition.tag.end.html"2047}2048},2049"name": "meta.tag.metadata.$2.void.html",2050"patterns": [2051{2052"include": "#attribute"2053}2054]2055},2056{2057"begin": "(?i)(<)(noscript|title)(?=\\s|/?>)",2058"beginCaptures": {2059"1": {2060"name": "punctuation.definition.tag.begin.html"2061},2062"2": {2063"name": "entity.name.tag.html"2064}2065},2066"end": ">",2067"endCaptures": {2068"0": {2069"name": "punctuation.definition.tag.end.html"2070}2071},2072"name": "meta.tag.metadata.$2.start.html",2073"patterns": [2074{2075"include": "#attribute"2076}2077]2078},2079{2080"begin": "(?i)(</)(noscript|title)(?=\\s|/?>)",2081"beginCaptures": {2082"1": {2083"name": "punctuation.definition.tag.begin.html"2084},2085"2": {2086"name": "entity.name.tag.html"2087}2088},2089"end": ">",2090"endCaptures": {2091"0": {2092"name": "punctuation.definition.tag.end.html"2093}2094},2095"name": "meta.tag.metadata.$2.end.html",2096"patterns": [2097{2098"include": "#attribute"2099}2100]2101},2102{2103"begin": "(?i)(<)(col|hr|input)(?=\\s|/?>)",2104"beginCaptures": {2105"1": {2106"name": "punctuation.definition.tag.begin.html"2107},2108"2": {2109"name": "entity.name.tag.html"2110}2111},2112"end": "/?>",2113"endCaptures": {2114"0": {2115"name": "punctuation.definition.tag.end.html"2116}2117},2118"name": "meta.tag.structure.$2.void.html",2119"patterns": [2120{2121"include": "#attribute"2122}2123]2124},2125{2126"begin": "(?i)(<)(address|article|aside|blockquote|body|button|caption|colgroup|datalist|dd|details|dialog|div|dl|dt|fieldset|figcaption|figure|footer|form|head|header|hgroup|html|h[1-6]|label|legend|li|main|map|menu|meter|nav|ol|optgroup|option|output|p|pre|progress|section|select|slot|summary|table|tbody|td|template|textarea|tfoot|th|thead|tr|ul)(?=\\s|/?>)",2127"beginCaptures": {2128"1": {2129"name": "punctuation.definition.tag.begin.html"2130},2131"2": {2132"name": "entity.name.tag.html"2133}2134},2135"end": ">",2136"endCaptures": {2137"0": {2138"name": "punctuation.definition.tag.end.html"2139}2140},2141"name": "meta.tag.structure.$2.start.html",2142"patterns": [2143{2144"include": "#attribute"2145}2146]2147},2148{2149"begin": "(?i)(</)(address|article|aside|blockquote|body|button|caption|colgroup|datalist|dd|details|dialog|div|dl|dt|fieldset|figcaption|figure|footer|form|head|header|hgroup|html|h[1-6]|label|legend|li|main|map|menu|meter|nav|ol|optgroup|option|output|p|pre|progress|section|select|slot|summary|table|tbody|td|template|textarea|tfoot|th|thead|tr|ul)(?=\\s|/?>)",2150"beginCaptures": {2151"1": {2152"name": "punctuation.definition.tag.begin.html"2153},2154"2": {2155"name": "entity.name.tag.html"2156}2157},2158"end": ">",2159"endCaptures": {2160"0": {2161"name": "punctuation.definition.tag.end.html"2162}2163},2164"name": "meta.tag.structure.$2.end.html",2165"patterns": [2166{2167"include": "#attribute"2168}2169]2170},2171{2172"begin": "(?i)(<)(area|br|wbr)(?=\\s|/?>)",2173"beginCaptures": {2174"1": {2175"name": "punctuation.definition.tag.begin.html"2176},2177"2": {2178"name": "entity.name.tag.html"2179}2180},2181"end": "/?>",2182"endCaptures": {2183"0": {2184"name": "punctuation.definition.tag.end.html"2185}2186},2187"name": "meta.tag.inline.$2.void.html",2188"patterns": [2189{2190"include": "#attribute"2191}2192]2193},2194{2195"begin": "(?i)(<)(a|abbr|b|bdi|bdo|cite|code|data|del|dfn|em|i|ins|kbd|mark|q|rp|rt|ruby|s|samp|small|span|strong|sub|sup|time|u|var)(?=\\s|/?>)",2196"beginCaptures": {2197"1": {2198"name": "punctuation.definition.tag.begin.html"2199},2200"2": {2201"name": "entity.name.tag.html"2202}2203},2204"end": ">",2205"endCaptures": {2206"0": {2207"name": "punctuation.definition.tag.end.html"2208}2209},2210"name": "meta.tag.inline.$2.start.html",2211"patterns": [2212{2213"include": "#attribute"2214}2215]2216},2217{2218"begin": "(?i)(</)(a|abbr|b|bdi|bdo|cite|code|data|del|dfn|em|i|ins|kbd|mark|q|rp|rt|ruby|s|samp|small|span|strong|sub|sup|time|u|var)(?=\\s|/?>)",2219"beginCaptures": {2220"1": {2221"name": "punctuation.definition.tag.begin.html"2222},2223"2": {2224"name": "entity.name.tag.html"2225}2226},2227"end": ">",2228"endCaptures": {2229"0": {2230"name": "punctuation.definition.tag.end.html"2231}2232},2233"name": "meta.tag.inline.$2.end.html",2234"patterns": [2235{2236"include": "#attribute"2237}2238]2239},2240{2241"begin": "(?i)(<)(embed|img|param|source|track)(?=\\s|/?>)",2242"beginCaptures": {2243"1": {2244"name": "punctuation.definition.tag.begin.html"2245},2246"2": {2247"name": "entity.name.tag.html"2248}2249},2250"end": "/?>",2251"endCaptures": {2252"0": {2253"name": "punctuation.definition.tag.end.html"2254}2255},2256"name": "meta.tag.object.$2.void.html",2257"patterns": [2258{2259"include": "#attribute"2260}2261]2262},2263{2264"begin": "(?i)(<)(audio|canvas|iframe|object|picture|video)(?=\\s|/?>)",2265"beginCaptures": {2266"1": {2267"name": "punctuation.definition.tag.begin.html"2268},2269"2": {2270"name": "entity.name.tag.html"2271}2272},2273"end": ">",2274"endCaptures": {2275"0": {2276"name": "punctuation.definition.tag.end.html"2277}2278},2279"name": "meta.tag.object.$2.start.html",2280"patterns": [2281{2282"include": "#attribute"2283}2284]2285},2286{2287"begin": "(?i)(</)(audio|canvas|iframe|object|picture|video)(?=\\s|/?>)",2288"beginCaptures": {2289"1": {2290"name": "punctuation.definition.tag.begin.html"2291},2292"2": {2293"name": "entity.name.tag.html"2294}2295},2296"end": ">",2297"endCaptures": {2298"0": {2299"name": "punctuation.definition.tag.end.html"2300}2301},2302"name": "meta.tag.object.$2.end.html",2303"patterns": [2304{2305"include": "#attribute"2306}2307]2308},2309{2310"begin": "(?i)(<)((basefont|isindex))(?=\\s|/?>)",2311"beginCaptures": {2312"1": {2313"name": "punctuation.definition.tag.begin.html"2314},2315"2": {2316"name": "entity.name.tag.html"2317},2318"3": {2319"name": "invalid.deprecated.html"2320}2321},2322"end": "/?>",2323"endCaptures": {2324"0": {2325"name": "punctuation.definition.tag.end.html"2326}2327},2328"name": "meta.tag.metadata.$2.void.html",2329"patterns": [2330{2331"include": "#attribute"2332}2333]2334},2335{2336"begin": "(?i)(<)((center|frameset|noembed|noframes))(?=\\s|/?>)",2337"beginCaptures": {2338"1": {2339"name": "punctuation.definition.tag.begin.html"2340},2341"2": {2342"name": "entity.name.tag.html"2343},2344"3": {2345"name": "invalid.deprecated.html"2346}2347},2348"end": ">",2349"endCaptures": {2350"0": {2351"name": "punctuation.definition.tag.end.html"2352}2353},2354"name": "meta.tag.structure.$2.start.html",2355"patterns": [2356{2357"include": "#attribute"2358}2359]2360},2361{2362"begin": "(?i)(</)((center|frameset|noembed|noframes))(?=\\s|/?>)",2363"beginCaptures": {2364"1": {2365"name": "punctuation.definition.tag.begin.html"2366},2367"2": {2368"name": "entity.name.tag.html"2369},2370"3": {2371"name": "invalid.deprecated.html"2372}2373},2374"end": ">",2375"endCaptures": {2376"0": {2377"name": "punctuation.definition.tag.end.html"2378}2379},2380"name": "meta.tag.structure.$2.end.html",2381"patterns": [2382{2383"include": "#attribute"2384}2385]2386},2387{2388"begin": "(?i)(<)((acronym|big|blink|font|strike|tt|xmp))(?=\\s|/?>)",2389"beginCaptures": {2390"1": {2391"name": "punctuation.definition.tag.begin.html"2392},2393"2": {2394"name": "entity.name.tag.html"2395},2396"3": {2397"name": "invalid.deprecated.html"2398}2399},2400"end": ">",2401"endCaptures": {2402"0": {2403"name": "punctuation.definition.tag.end.html"2404}2405},2406"name": "meta.tag.inline.$2.start.html",2407"patterns": [2408{2409"include": "#attribute"2410}2411]2412},2413{2414"begin": "(?i)(</)((acronym|big|blink|font|strike|tt|xmp))(?=\\s|/?>)",2415"beginCaptures": {2416"1": {2417"name": "punctuation.definition.tag.begin.html"2418},2419"2": {2420"name": "entity.name.tag.html"2421},2422"3": {2423"name": "invalid.deprecated.html"2424}2425},2426"end": ">",2427"endCaptures": {2428"0": {2429"name": "punctuation.definition.tag.end.html"2430}2431},2432"name": "meta.tag.inline.$2.end.html",2433"patterns": [2434{2435"include": "#attribute"2436}2437]2438},2439{2440"begin": "(?i)(<)((frame))(?=\\s|/?>)",2441"beginCaptures": {2442"1": {2443"name": "punctuation.definition.tag.begin.html"2444},2445"2": {2446"name": "entity.name.tag.html"2447},2448"3": {2449"name": "invalid.deprecated.html"2450}2451},2452"end": "/?>",2453"endCaptures": {2454"0": {2455"name": "punctuation.definition.tag.end.html"2456}2457},2458"name": "meta.tag.object.$2.void.html",2459"patterns": [2460{2461"include": "#attribute"2462}2463]2464},2465{2466"begin": "(?i)(<)((applet))(?=\\s|/?>)",2467"beginCaptures": {2468"1": {2469"name": "punctuation.definition.tag.begin.html"2470},2471"2": {2472"name": "entity.name.tag.html"2473},2474"3": {2475"name": "invalid.deprecated.html"2476}2477},2478"end": ">",2479"endCaptures": {2480"0": {2481"name": "punctuation.definition.tag.end.html"2482}2483},2484"name": "meta.tag.object.$2.start.html",2485"patterns": [2486{2487"include": "#attribute"2488}2489]2490},2491{2492"begin": "(?i)(</)((applet))(?=\\s|/?>)",2493"beginCaptures": {2494"1": {2495"name": "punctuation.definition.tag.begin.html"2496},2497"2": {2498"name": "entity.name.tag.html"2499},2500"3": {2501"name": "invalid.deprecated.html"2502}2503},2504"end": ">",2505"endCaptures": {2506"0": {2507"name": "punctuation.definition.tag.end.html"2508}2509},2510"name": "meta.tag.object.$2.end.html",2511"patterns": [2512{2513"include": "#attribute"2514}2515]2516},2517{2518"begin": "(?i)(<)((dir|keygen|listing|menuitem|plaintext|spacer))(?=\\s|/?>)",2519"beginCaptures": {2520"1": {2521"name": "punctuation.definition.tag.begin.html"2522},2523"2": {2524"name": "entity.name.tag.html"2525},2526"3": {2527"name": "invalid.illegal.no-longer-supported.html"2528}2529},2530"end": ">",2531"endCaptures": {2532"0": {2533"name": "punctuation.definition.tag.end.html"2534}2535},2536"name": "meta.tag.other.$2.start.html",2537"patterns": [2538{2539"include": "#attribute"2540}2541]2542},2543{2544"begin": "(?i)(</)((dir|keygen|listing|menuitem|plaintext|spacer))(?=\\s|/?>)",2545"beginCaptures": {2546"1": {2547"name": "punctuation.definition.tag.begin.html"2548},2549"2": {2550"name": "entity.name.tag.html"2551},2552"3": {2553"name": "invalid.illegal.no-longer-supported.html"2554}2555},2556"end": ">",2557"endCaptures": {2558"0": {2559"name": "punctuation.definition.tag.end.html"2560}2561},2562"name": "meta.tag.other.$2.end.html",2563"patterns": [2564{2565"include": "#attribute"2566}2567]2568},2569{2570"include": "#math"2571},2572{2573"include": "#svg"2574},2575{2576"begin": "(<)([a-zA-Z][.0-9_a-zA-Z\\x{00B7}\\x{00C0}-\\x{00D6}\\x{00D8}-\\x{00F6}\\x{00F8}-\\x{037D}\\x{037F}-\\x{1FFF}\\x{200C}-\\x{200D}\\x{203F}-\\x{2040}\\x{2070}-\\x{218F}\\x{2C00}-\\x{2FEF}\\x{3001}-\\x{D7FF}\\x{F900}-\\x{FDCF}\\x{FDF0}-\\x{FFFD}\\x{10000}-\\x{EFFFF}]*-[\\-.0-9_a-zA-Z\\x{00B7}\\x{00C0}-\\x{00D6}\\x{00D8}-\\x{00F6}\\x{00F8}-\\x{037D}\\x{037F}-\\x{1FFF}\\x{200C}-\\x{200D}\\x{203F}-\\x{2040}\\x{2070}-\\x{218F}\\x{2C00}-\\x{2FEF}\\x{3001}-\\x{D7FF}\\x{F900}-\\x{FDCF}\\x{FDF0}-\\x{FFFD}\\x{10000}-\\x{EFFFF}]*)(?=\\s|/?>)",2577"beginCaptures": {2578"1": {2579"name": "punctuation.definition.tag.begin.html"2580},2581"2": {2582"name": "entity.name.tag.html"2583}2584},2585"end": "/?>",2586"endCaptures": {2587"0": {2588"name": "punctuation.definition.tag.end.html"2589}2590},2591"name": "meta.tag.custom.start.html",2592"patterns": [2593{2594"include": "#attribute"2595}2596]2597},2598{2599"begin": "(</)([a-zA-Z][.0-9_a-zA-Z\\x{00B7}\\x{00C0}-\\x{00D6}\\x{00D8}-\\x{00F6}\\x{00F8}-\\x{037D}\\x{037F}-\\x{1FFF}\\x{200C}-\\x{200D}\\x{203F}-\\x{2040}\\x{2070}-\\x{218F}\\x{2C00}-\\x{2FEF}\\x{3001}-\\x{D7FF}\\x{F900}-\\x{FDCF}\\x{FDF0}-\\x{FFFD}\\x{10000}-\\x{EFFFF}]*-[\\-.0-9_a-zA-Z\\x{00B7}\\x{00C0}-\\x{00D6}\\x{00D8}-\\x{00F6}\\x{00F8}-\\x{037D}\\x{037F}-\\x{1FFF}\\x{200C}-\\x{200D}\\x{203F}-\\x{2040}\\x{2070}-\\x{218F}\\x{2C00}-\\x{2FEF}\\x{3001}-\\x{D7FF}\\x{F900}-\\x{FDCF}\\x{FDF0}-\\x{FFFD}\\x{10000}-\\x{EFFFF}]*)(?=\\s|/?>)",2600"beginCaptures": {2601"1": {2602"name": "punctuation.definition.tag.begin.html"2603},2604"2": {2605"name": "entity.name.tag.html"2606}2607},2608"end": ">",2609"endCaptures": {2610"0": {2611"name": "punctuation.definition.tag.end.html"2612}2613},2614"name": "meta.tag.custom.end.html",2615"patterns": [2616{2617"include": "#attribute"2618}2619]2620}2621]2622},2623"xml-processing": {2624"begin": "(<\\?)(xml)",2625"captures": {2626"1": {2627"name": "punctuation.definition.tag.html"2628},2629"2": {2630"name": "entity.name.tag.html"2631}2632},2633"end": "(\\?>)",2634"name": "meta.tag.metadata.processing.xml.html",2635"patterns": [2636{2637"include": "#attribute"2638}2639]2640}2641}2642}26432644