@tolgee/cli 1.1.1 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2650 @@
1
+ {
2
+ "//": "Modified grammar from https://raw.githubusercontent.com/textmate/html.tmbundle/master/Syntaxes/HTML.plist",
3
+ "fileTypes": [
4
+ "html",
5
+ "htm",
6
+ "shtml",
7
+ "xhtml",
8
+ "inc",
9
+ "tmpl",
10
+ "tpl"
11
+ ],
12
+ "firstLineMatch": "<(?i:(!DOCTYPE\\s*)?html)",
13
+ "injections": {
14
+ "R:text.html - (comment.block, text.html meta.embedded, meta.tag.*.*.html, meta.tag.*.*.*.html, meta.tag.*.*.*.*.html)": {
15
+ "comment": "Uses R: to ensure this matches after any other injections.",
16
+ "patterns": [
17
+ {
18
+ "match": "<",
19
+ "name": "invalid.illegal.bad-angle-bracket.html"
20
+ }
21
+ ]
22
+ }
23
+ },
24
+ "keyEquivalent": "^~H",
25
+ "name": "HTML",
26
+ "patterns": [
27
+ {
28
+ "include": "#xml-processing"
29
+ },
30
+ {
31
+ "include": "#comment"
32
+ },
33
+ {
34
+ "include": "#doctype"
35
+ },
36
+ {
37
+ "include": "#cdata"
38
+ },
39
+ {
40
+ "include": "#tags-valid"
41
+ },
42
+ {
43
+ "include": "#tags-invalid"
44
+ },
45
+ {
46
+ "include": "#entities"
47
+ }
48
+ ],
49
+ "repository": {
50
+ "attribute": {
51
+ "patterns": [
52
+ {
53
+ "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:-])",
54
+ "beginCaptures": {
55
+ "0": {
56
+ "name": "entity.other.attribute-name.html"
57
+ }
58
+ },
59
+ "comment": "HTML5 attributes, not event handlers",
60
+ "end": "(?=\\s*+[^=\\s])",
61
+ "name": "meta.attribute.$1.html",
62
+ "patterns": [
63
+ {
64
+ "include": "#attribute-interior"
65
+ }
66
+ ]
67
+ },
68
+ {
69
+ "begin": "style(?![\\w:-])",
70
+ "beginCaptures": {
71
+ "0": {
72
+ "name": "entity.other.attribute-name.html"
73
+ }
74
+ },
75
+ "comment": "HTML5 style attribute",
76
+ "end": "(?=\\s*+[^=\\s])",
77
+ "name": "meta.attribute.style.html",
78
+ "patterns": [
79
+ {
80
+ "begin": "=",
81
+ "beginCaptures": {
82
+ "0": {
83
+ "name": "punctuation.separator.key-value.html"
84
+ }
85
+ },
86
+ "end": "(?<=[^\\s=])(?!\\s*=)|(?=/?>)",
87
+ "patterns": [
88
+ {
89
+ "begin": "(?=[^\\s=<>`/]|/(?!>))",
90
+ "end": "(?!\\G)",
91
+ "name": "meta.embedded.line.css",
92
+ "patterns": [
93
+ {
94
+ "captures": {
95
+ "0": {
96
+ "name": "source.css"
97
+ }
98
+ },
99
+ "match": "([^\\s\"'=<>`/]|/(?!>))+",
100
+ "name": "string.unquoted.html"
101
+ },
102
+ {
103
+ "begin": "\"",
104
+ "beginCaptures": {
105
+ "0": {
106
+ "name": "punctuation.definition.string.begin.html"
107
+ }
108
+ },
109
+ "contentName": "source.css",
110
+ "end": "(\")",
111
+ "endCaptures": {
112
+ "0": {
113
+ "name": "punctuation.definition.string.end.html"
114
+ },
115
+ "1": {
116
+ "name": "source.css"
117
+ }
118
+ },
119
+ "name": "string.quoted.double.html",
120
+ "patterns": [
121
+ {
122
+ "include": "#entities"
123
+ }
124
+ ]
125
+ },
126
+ {
127
+ "begin": "'",
128
+ "beginCaptures": {
129
+ "0": {
130
+ "name": "punctuation.definition.string.begin.html"
131
+ }
132
+ },
133
+ "contentName": "source.css",
134
+ "end": "(')",
135
+ "endCaptures": {
136
+ "0": {
137
+ "name": "punctuation.definition.string.end.html"
138
+ },
139
+ "1": {
140
+ "name": "source.css"
141
+ }
142
+ },
143
+ "name": "string.quoted.single.html",
144
+ "patterns": [
145
+ {
146
+ "include": "#entities"
147
+ }
148
+ ]
149
+ }
150
+ ]
151
+ },
152
+ {
153
+ "match": "=",
154
+ "name": "invalid.illegal.unexpected-equals-sign.html"
155
+ }
156
+ ]
157
+ }
158
+ ]
159
+ },
160
+ {
161
+ "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:-])",
162
+ "beginCaptures": {
163
+ "0": {
164
+ "name": "entity.other.attribute-name.html"
165
+ }
166
+ },
167
+ "comment": "HTML5 attributes, event handlers",
168
+ "end": "(?=\\s*+[^=\\s])",
169
+ "name": "meta.attribute.event-handler.$1.html",
170
+ "patterns": [
171
+ {
172
+ "begin": "=",
173
+ "beginCaptures": {
174
+ "0": {
175
+ "name": "punctuation.separator.key-value.html"
176
+ }
177
+ },
178
+ "end": "(?<=[^\\s=])(?!\\s*=)|(?=/?>)",
179
+ "patterns": [
180
+ {
181
+ "begin": "(?=[^\\s=<>`/]|/(?!>))",
182
+ "end": "(?!\\G)",
183
+ "name": "meta.embedded.line.js",
184
+ "patterns": [
185
+ {
186
+ "captures": {
187
+ "0": {
188
+ "name": "source.js"
189
+ },
190
+ "1": {
191
+ "patterns": [
192
+ {
193
+ "include": "source.js"
194
+ }
195
+ ]
196
+ }
197
+ },
198
+ "match": "(([^\\s\"'=<>`/]|/(?!>))+)",
199
+ "name": "string.unquoted.html"
200
+ },
201
+ {
202
+ "begin": "\"",
203
+ "beginCaptures": {
204
+ "0": {
205
+ "name": "punctuation.definition.string.begin.html"
206
+ }
207
+ },
208
+ "contentName": "source.js",
209
+ "end": "(\")",
210
+ "endCaptures": {
211
+ "0": {
212
+ "name": "punctuation.definition.string.end.html"
213
+ },
214
+ "1": {
215
+ "name": "source.js"
216
+ }
217
+ },
218
+ "name": "string.quoted.double.html",
219
+ "patterns": [
220
+ {
221
+ "captures": {
222
+ "0": {
223
+ "patterns": [
224
+ {
225
+ "include": "source.js"
226
+ }
227
+ ]
228
+ }
229
+ },
230
+ "match": "([^\\n\"/]|/(?![/*]))+"
231
+ },
232
+ {
233
+ "begin": "//",
234
+ "beginCaptures": {
235
+ "0": {
236
+ "name": "punctuation.definition.comment.js"
237
+ }
238
+ },
239
+ "end": "(?=\")|\\n",
240
+ "name": "comment.line.double-slash.js"
241
+ },
242
+ {
243
+ "begin": "/\\*",
244
+ "beginCaptures": {
245
+ "0": {
246
+ "name": "punctuation.definition.comment.begin.js"
247
+ }
248
+ },
249
+ "end": "(?=\")|\\*/",
250
+ "endCaptures": {
251
+ "0": {
252
+ "name": "punctuation.definition.comment.end.js"
253
+ }
254
+ },
255
+ "name": "comment.block.js"
256
+ }
257
+ ]
258
+ },
259
+ {
260
+ "begin": "'",
261
+ "beginCaptures": {
262
+ "0": {
263
+ "name": "punctuation.definition.string.begin.html"
264
+ }
265
+ },
266
+ "contentName": "source.js",
267
+ "end": "(')",
268
+ "endCaptures": {
269
+ "0": {
270
+ "name": "punctuation.definition.string.end.html"
271
+ },
272
+ "1": {
273
+ "name": "source.js"
274
+ }
275
+ },
276
+ "name": "string.quoted.single.html",
277
+ "patterns": [
278
+ {
279
+ "captures": {
280
+ "0": {
281
+ "patterns": [
282
+ {
283
+ "include": "source.js"
284
+ }
285
+ ]
286
+ }
287
+ },
288
+ "match": "([^\\n'/]|/(?![/*]))+"
289
+ },
290
+ {
291
+ "begin": "//",
292
+ "beginCaptures": {
293
+ "0": {
294
+ "name": "punctuation.definition.comment.js"
295
+ }
296
+ },
297
+ "end": "(?=')|\\n",
298
+ "name": "comment.line.double-slash.js"
299
+ },
300
+ {
301
+ "begin": "/\\*",
302
+ "beginCaptures": {
303
+ "0": {
304
+ "name": "punctuation.definition.comment.begin.js"
305
+ }
306
+ },
307
+ "end": "(?=')|\\*/",
308
+ "endCaptures": {
309
+ "0": {
310
+ "name": "punctuation.definition.comment.end.js"
311
+ }
312
+ },
313
+ "name": "comment.block.js"
314
+ }
315
+ ]
316
+ }
317
+ ]
318
+ },
319
+ {
320
+ "match": "=",
321
+ "name": "invalid.illegal.unexpected-equals-sign.html"
322
+ }
323
+ ]
324
+ }
325
+ ]
326
+ },
327
+ {
328
+ "begin": "(data-[a-z\\-]+)(?![\\w:-])",
329
+ "beginCaptures": {
330
+ "0": {
331
+ "name": "entity.other.attribute-name.html"
332
+ }
333
+ },
334
+ "comment": "HTML5 attributes, data-*",
335
+ "end": "(?=\\s*+[^=\\s])",
336
+ "name": "meta.attribute.data-x.$1.html",
337
+ "patterns": [
338
+ {
339
+ "include": "#attribute-interior"
340
+ }
341
+ ]
342
+ },
343
+ {
344
+ "begin": "(align|bgcolor|border)(?![\\w:-])",
345
+ "beginCaptures": {
346
+ "0": {
347
+ "name": "invalid.deprecated.entity.other.attribute-name.html"
348
+ }
349
+ },
350
+ "comment": "HTML attributes, deprecated",
351
+ "end": "(?=\\s*+[^=\\s])",
352
+ "name": "meta.attribute.$1.html",
353
+ "patterns": [
354
+ {
355
+ "include": "#attribute-interior"
356
+ }
357
+ ]
358
+ },
359
+ {
360
+ "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}]+)",
361
+ "beginCaptures": {
362
+ "0": {
363
+ "name": "entity.other.attribute-name.html"
364
+ }
365
+ },
366
+ "comment": "Anything else that is valid",
367
+ "end": "(?=\\s*+[^=\\s])",
368
+ "name": "meta.attribute.unrecognized.$1.html",
369
+ "patterns": [
370
+ {
371
+ "include": "#attribute-interior"
372
+ }
373
+ ]
374
+ },
375
+ {
376
+ "match": "[^\\s>]+",
377
+ "name": "invalid.illegal.character-not-allowed-here.html"
378
+ }
379
+ ]
380
+ },
381
+ "attribute-interior": {
382
+ "patterns": [
383
+ {
384
+ "begin": "=",
385
+ "beginCaptures": {
386
+ "0": {
387
+ "name": "punctuation.separator.key-value.html"
388
+ }
389
+ },
390
+ "end": "(?<=[^\\s=])(?!\\s*=)|(?=/?>)",
391
+ "patterns": [
392
+ {
393
+ "match": "([^\\s\"'=<>`/]|/(?!>))+",
394
+ "name": "string.unquoted.html"
395
+ },
396
+ {
397
+ "begin": "\"",
398
+ "beginCaptures": {
399
+ "0": {
400
+ "name": "punctuation.definition.string.begin.html"
401
+ }
402
+ },
403
+ "end": "\"",
404
+ "endCaptures": {
405
+ "0": {
406
+ "name": "punctuation.definition.string.end.html"
407
+ }
408
+ },
409
+ "name": "string.quoted.double.html",
410
+ "patterns": [
411
+ {
412
+ "include": "#entities"
413
+ }
414
+ ]
415
+ },
416
+ {
417
+ "begin": "'",
418
+ "beginCaptures": {
419
+ "0": {
420
+ "name": "punctuation.definition.string.begin.html"
421
+ }
422
+ },
423
+ "end": "'",
424
+ "endCaptures": {
425
+ "0": {
426
+ "name": "punctuation.definition.string.end.html"
427
+ }
428
+ },
429
+ "name": "string.quoted.single.html",
430
+ "patterns": [
431
+ {
432
+ "include": "#entities"
433
+ }
434
+ ]
435
+ },
436
+ {
437
+ "match": "=",
438
+ "name": "invalid.illegal.unexpected-equals-sign.html"
439
+ }
440
+ ]
441
+ }
442
+ ]
443
+ },
444
+ "cdata": {
445
+ "begin": "<!\\[CDATA\\[",
446
+ "beginCaptures": {
447
+ "0": {
448
+ "name": "punctuation.definition.tag.begin.html"
449
+ }
450
+ },
451
+ "contentName": "string.other.inline-data.html",
452
+ "end": "]]>",
453
+ "endCaptures": {
454
+ "0": {
455
+ "name": "punctuation.definition.tag.end.html"
456
+ }
457
+ },
458
+ "name": "meta.tag.metadata.cdata.html"
459
+ },
460
+ "comment": {
461
+ "begin": "<!--",
462
+ "captures": {
463
+ "0": {
464
+ "name": "punctuation.definition.comment.html"
465
+ }
466
+ },
467
+ "end": "-->",
468
+ "name": "comment.block.html",
469
+ "patterns": [
470
+ {
471
+ "match": "\\G-?>",
472
+ "name": "invalid.illegal.characters-not-allowed-here.html"
473
+ },
474
+ {
475
+ "match": "<!--(?!>)|<!-(?=-->)",
476
+ "name": "invalid.illegal.characters-not-allowed-here.html"
477
+ },
478
+ {
479
+ "match": "--!>",
480
+ "name": "invalid.illegal.characters-not-allowed-here.html"
481
+ }
482
+ ]
483
+ },
484
+ "core-minus-invalid": {
485
+ "comment": "This should be the root pattern array includes minus #tags-invalid",
486
+ "patterns": [
487
+ {
488
+ "include": "#xml-processing"
489
+ },
490
+ {
491
+ "include": "#comment"
492
+ },
493
+ {
494
+ "include": "#doctype"
495
+ },
496
+ {
497
+ "include": "#cdata"
498
+ },
499
+ {
500
+ "include": "#tags-valid"
501
+ },
502
+ {
503
+ "include": "#entities"
504
+ }
505
+ ]
506
+ },
507
+ "doctype": {
508
+ "begin": "<!(?=(?i:DOCTYPE\\s))",
509
+ "beginCaptures": {
510
+ "0": {
511
+ "name": "punctuation.definition.tag.begin.html"
512
+ }
513
+ },
514
+ "end": ">",
515
+ "endCaptures": {
516
+ "0": {
517
+ "name": "punctuation.definition.tag.end.html"
518
+ }
519
+ },
520
+ "name": "meta.tag.metadata.doctype.html",
521
+ "patterns": [
522
+ {
523
+ "match": "\\G(?i:DOCTYPE)",
524
+ "name": "entity.name.tag.html"
525
+ },
526
+ {
527
+ "begin": "\"",
528
+ "end": "\"",
529
+ "name": "string.quoted.double.html"
530
+ },
531
+ {
532
+ "match": "[^\\s>]+",
533
+ "name": "entity.other.attribute-name.html"
534
+ }
535
+ ]
536
+ },
537
+ "entities": {
538
+ "patterns": [
539
+ {
540
+ "captures": {
541
+ "1": {
542
+ "name": "punctuation.definition.entity.html"
543
+ },
544
+ "912": {
545
+ "name": "punctuation.definition.entity.html"
546
+ }
547
+ },
548
+ "comment": "Yes this is a bit ridiculous, there are quite a lot of these",
549
+ "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",
550
+ "name": "constant.character.entity.named.$2.html"
551
+ },
552
+ {
553
+ "captures": {
554
+ "1": {
555
+ "name": "punctuation.definition.entity.html"
556
+ },
557
+ "3": {
558
+ "name": "punctuation.definition.entity.html"
559
+ }
560
+ },
561
+ "match": "(&)#[0-9]+(;)",
562
+ "name": "constant.character.entity.numeric.decimal.html"
563
+ },
564
+ {
565
+ "captures": {
566
+ "1": {
567
+ "name": "punctuation.definition.entity.html"
568
+ },
569
+ "3": {
570
+ "name": "punctuation.definition.entity.html"
571
+ }
572
+ },
573
+ "match": "(&)#[xX][0-9a-fA-F]+(;)",
574
+ "name": "constant.character.entity.numeric.hexadecimal.html"
575
+ },
576
+ {
577
+ "match": "&(?=[a-zA-Z0-9]+;)",
578
+ "name": "invalid.illegal.ambiguous-ampersand.html"
579
+ }
580
+ ]
581
+ },
582
+ "math": {
583
+ "patterns": [
584
+ {
585
+ "begin": "(?i)(<)(math)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(>))?",
586
+ "beginCaptures": {
587
+ "0": {
588
+ "name": "meta.tag.structure.$2.start.html"
589
+ },
590
+ "1": {
591
+ "name": "punctuation.definition.tag.begin.html"
592
+ },
593
+ "2": {
594
+ "name": "entity.name.tag.html"
595
+ },
596
+ "3": {
597
+ "patterns": [
598
+ {
599
+ "include": "#attribute"
600
+ }
601
+ ]
602
+ },
603
+ "5": {
604
+ "name": "punctuation.definition.tag.end.html"
605
+ }
606
+ },
607
+ "end": "(?i)(</)(\\2)\\s*(>)",
608
+ "endCaptures": {
609
+ "0": {
610
+ "name": "meta.tag.structure.$2.end.html"
611
+ },
612
+ "1": {
613
+ "name": "punctuation.definition.tag.begin.html"
614
+ },
615
+ "2": {
616
+ "name": "entity.name.tag.html"
617
+ },
618
+ "3": {
619
+ "name": "punctuation.definition.tag.end.html"
620
+ }
621
+ },
622
+ "name": "meta.element.structure.$2.html",
623
+ "patterns": [
624
+ {
625
+ "begin": "(?<!>)\\G",
626
+ "end": ">",
627
+ "endCaptures": {
628
+ "0": {
629
+ "name": "punctuation.definition.tag.end.html"
630
+ }
631
+ },
632
+ "name": "meta.tag.structure.start.html",
633
+ "patterns": [
634
+ {
635
+ "include": "#attribute"
636
+ }
637
+ ]
638
+ },
639
+ {
640
+ "include": "#tags"
641
+ }
642
+ ]
643
+ }
644
+ ],
645
+ "repository": {
646
+ "attribute": {
647
+ "patterns": [
648
+ {
649
+ "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:-])",
650
+ "beginCaptures": {
651
+ "0": {
652
+ "name": "entity.other.attribute-name.html"
653
+ }
654
+ },
655
+ "end": "(?=\\s*+[^=\\s])",
656
+ "name": "meta.attribute.$1.html",
657
+ "patterns": [
658
+ {
659
+ "include": "#attribute-interior"
660
+ }
661
+ ]
662
+ },
663
+ {
664
+ "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}]+)",
665
+ "beginCaptures": {
666
+ "0": {
667
+ "name": "entity.other.attribute-name.html"
668
+ }
669
+ },
670
+ "comment": "Anything else that is valid",
671
+ "end": "(?=\\s*+[^=\\s])",
672
+ "name": "meta.attribute.unrecognized.$1.html",
673
+ "patterns": [
674
+ {
675
+ "include": "#attribute-interior"
676
+ }
677
+ ]
678
+ },
679
+ {
680
+ "match": "[^\\s>]+",
681
+ "name": "invalid.illegal.character-not-allowed-here.html"
682
+ }
683
+ ]
684
+ },
685
+ "tags": {
686
+ "patterns": [
687
+ {
688
+ "include": "#comment"
689
+ },
690
+ {
691
+ "include": "#cdata"
692
+ },
693
+ {
694
+ "captures": {
695
+ "0": {
696
+ "name": "meta.tag.structure.math.$2.void.html"
697
+ },
698
+ "1": {
699
+ "name": "punctuation.definition.tag.begin.html"
700
+ },
701
+ "2": {
702
+ "name": "entity.name.tag.html"
703
+ },
704
+ "3": {
705
+ "patterns": [
706
+ {
707
+ "include": "#attribute"
708
+ }
709
+ ]
710
+ },
711
+ "5": {
712
+ "name": "punctuation.definition.tag.end.html"
713
+ }
714
+ },
715
+ "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|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(/>))",
716
+ "name": "meta.element.structure.math.$2.html"
717
+ },
718
+ {
719
+ "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|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(>))?",
720
+ "beginCaptures": {
721
+ "0": {
722
+ "name": "meta.tag.structure.math.$2.start.html"
723
+ },
724
+ "1": {
725
+ "name": "punctuation.definition.tag.begin.html"
726
+ },
727
+ "2": {
728
+ "name": "entity.name.tag.html"
729
+ },
730
+ "3": {
731
+ "patterns": [
732
+ {
733
+ "include": "#attribute"
734
+ }
735
+ ]
736
+ },
737
+ "5": {
738
+ "name": "punctuation.definition.tag.end.html"
739
+ }
740
+ },
741
+ "end": "(?i)(</)(\\2)\\s*(>)|(/>)|(?=</\\w+)",
742
+ "endCaptures": {
743
+ "0": {
744
+ "name": "meta.tag.structure.math.$2.end.html"
745
+ },
746
+ "1": {
747
+ "name": "punctuation.definition.tag.begin.html"
748
+ },
749
+ "2": {
750
+ "name": "entity.name.tag.html"
751
+ },
752
+ "3": {
753
+ "name": "punctuation.definition.tag.end.html"
754
+ },
755
+ "4": {
756
+ "name": "punctuation.definition.tag.end.html"
757
+ }
758
+ },
759
+ "name": "meta.element.structure.math.$2.html",
760
+ "patterns": [
761
+ {
762
+ "begin": "(?<!>)\\G",
763
+ "end": "(?=/>)|>",
764
+ "endCaptures": {
765
+ "0": {
766
+ "name": "punctuation.definition.tag.end.html"
767
+ }
768
+ },
769
+ "name": "meta.tag.structure.start.html",
770
+ "patterns": [
771
+ {
772
+ "include": "#attribute"
773
+ }
774
+ ]
775
+ },
776
+ {
777
+ "include": "#tags"
778
+ }
779
+ ]
780
+ },
781
+ {
782
+ "captures": {
783
+ "0": {
784
+ "name": "meta.tag.inline.math.$2.void.html"
785
+ },
786
+ "1": {
787
+ "name": "punctuation.definition.tag.begin.html"
788
+ },
789
+ "2": {
790
+ "name": "entity.name.tag.html"
791
+ },
792
+ "3": {
793
+ "patterns": [
794
+ {
795
+ "include": "#attribute"
796
+ }
797
+ ]
798
+ },
799
+ "5": {
800
+ "name": "punctuation.definition.tag.end.html"
801
+ }
802
+ },
803
+ "match": "(?i)(<)(mi|mn|mo|ms|mspace|mtext|maligngroup|malignmark)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(/>))",
804
+ "name": "meta.element.inline.math.$2.html"
805
+ },
806
+ {
807
+ "begin": "(?i)(<)(mi|mn|mo|ms|mspace|mtext|maligngroup|malignmark)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(>))?",
808
+ "beginCaptures": {
809
+ "0": {
810
+ "name": "meta.tag.inline.math.$2.start.html"
811
+ },
812
+ "1": {
813
+ "name": "punctuation.definition.tag.begin.html"
814
+ },
815
+ "2": {
816
+ "name": "entity.name.tag.html"
817
+ },
818
+ "3": {
819
+ "patterns": [
820
+ {
821
+ "include": "#attribute"
822
+ }
823
+ ]
824
+ },
825
+ "5": {
826
+ "name": "punctuation.definition.tag.end.html"
827
+ }
828
+ },
829
+ "end": "(?i)(</)(\\2)\\s*(>)|(/>)|(?=</\\w+)",
830
+ "endCaptures": {
831
+ "0": {
832
+ "name": "meta.tag.inline.math.$2.end.html"
833
+ },
834
+ "1": {
835
+ "name": "punctuation.definition.tag.begin.html"
836
+ },
837
+ "2": {
838
+ "name": "entity.name.tag.html"
839
+ },
840
+ "3": {
841
+ "name": "punctuation.definition.tag.end.html"
842
+ },
843
+ "4": {
844
+ "name": "punctuation.definition.tag.end.html"
845
+ }
846
+ },
847
+ "name": "meta.element.inline.math.$2.html",
848
+ "patterns": [
849
+ {
850
+ "begin": "(?<!>)\\G",
851
+ "end": "(?=/>)|>",
852
+ "endCaptures": {
853
+ "0": {
854
+ "name": "punctuation.definition.tag.end.html"
855
+ }
856
+ },
857
+ "name": "meta.tag.inline.start.html",
858
+ "patterns": [
859
+ {
860
+ "include": "#attribute"
861
+ }
862
+ ]
863
+ },
864
+ {
865
+ "include": "#tags"
866
+ }
867
+ ]
868
+ },
869
+ {
870
+ "captures": {
871
+ "0": {
872
+ "name": "meta.tag.object.math.$2.void.html"
873
+ },
874
+ "1": {
875
+ "name": "punctuation.definition.tag.begin.html"
876
+ },
877
+ "2": {
878
+ "name": "entity.name.tag.html"
879
+ },
880
+ "3": {
881
+ "patterns": [
882
+ {
883
+ "include": "#attribute"
884
+ }
885
+ ]
886
+ },
887
+ "5": {
888
+ "name": "punctuation.definition.tag.end.html"
889
+ }
890
+ },
891
+ "match": "(?i)(<)(mglyph)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(/>))",
892
+ "name": "meta.element.object.math.$2.html"
893
+ },
894
+ {
895
+ "begin": "(?i)(<)(mglyph)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(>))?",
896
+ "beginCaptures": {
897
+ "0": {
898
+ "name": "meta.tag.object.math.$2.start.html"
899
+ },
900
+ "1": {
901
+ "name": "punctuation.definition.tag.begin.html"
902
+ },
903
+ "2": {
904
+ "name": "entity.name.tag.html"
905
+ },
906
+ "3": {
907
+ "patterns": [
908
+ {
909
+ "include": "#attribute"
910
+ }
911
+ ]
912
+ },
913
+ "5": {
914
+ "name": "punctuation.definition.tag.end.html"
915
+ }
916
+ },
917
+ "end": "(?i)(</)(\\2)\\s*(>)|(/>)|(?=</\\w+)",
918
+ "endCaptures": {
919
+ "0": {
920
+ "name": "meta.tag.object.math.$2.end.html"
921
+ },
922
+ "1": {
923
+ "name": "punctuation.definition.tag.begin.html"
924
+ },
925
+ "2": {
926
+ "name": "entity.name.tag.html"
927
+ },
928
+ "3": {
929
+ "name": "punctuation.definition.tag.end.html"
930
+ },
931
+ "4": {
932
+ "name": "punctuation.definition.tag.end.html"
933
+ }
934
+ },
935
+ "name": "meta.element.object.math.$2.html",
936
+ "patterns": [
937
+ {
938
+ "begin": "(?<!>)\\G",
939
+ "end": "(?=/>)|>",
940
+ "endCaptures": {
941
+ "0": {
942
+ "name": "punctuation.definition.tag.end.html"
943
+ }
944
+ },
945
+ "name": "meta.tag.object.start.html",
946
+ "patterns": [
947
+ {
948
+ "include": "#attribute"
949
+ }
950
+ ]
951
+ },
952
+ {
953
+ "include": "#tags"
954
+ }
955
+ ]
956
+ },
957
+ {
958
+ "captures": {
959
+ "0": {
960
+ "name": "meta.tag.other.invalid.void.html"
961
+ },
962
+ "1": {
963
+ "name": "punctuation.definition.tag.begin.html"
964
+ },
965
+ "2": {
966
+ "name": "entity.name.tag.html"
967
+ },
968
+ "3": {
969
+ "name": "invalid.illegal.unrecognized-tag.html"
970
+ },
971
+ "4": {
972
+ "patterns": [
973
+ {
974
+ "include": "#attribute"
975
+ }
976
+ ]
977
+ },
978
+ "6": {
979
+ "name": "punctuation.definition.tag.end.html"
980
+ }
981
+ },
982
+ "match": "(?i)(<)(([\\w:]+))(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(/>))",
983
+ "name": "meta.element.other.invalid.html"
984
+ },
985
+ {
986
+ "begin": "(?i)(<)((\\w[^\\s>]*))(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(>))?",
987
+ "beginCaptures": {
988
+ "0": {
989
+ "name": "meta.tag.other.invalid.start.html"
990
+ },
991
+ "1": {
992
+ "name": "punctuation.definition.tag.begin.html"
993
+ },
994
+ "2": {
995
+ "name": "entity.name.tag.html"
996
+ },
997
+ "3": {
998
+ "name": "invalid.illegal.unrecognized-tag.html"
999
+ },
1000
+ "4": {
1001
+ "patterns": [
1002
+ {
1003
+ "include": "#attribute"
1004
+ }
1005
+ ]
1006
+ },
1007
+ "6": {
1008
+ "name": "punctuation.definition.tag.end.html"
1009
+ }
1010
+ },
1011
+ "end": "(?i)(</)((\\2))\\s*(>)|(/>)|(?=</\\w+)",
1012
+ "endCaptures": {
1013
+ "0": {
1014
+ "name": "meta.tag.other.invalid.end.html"
1015
+ },
1016
+ "1": {
1017
+ "name": "punctuation.definition.tag.begin.html"
1018
+ },
1019
+ "2": {
1020
+ "name": "entity.name.tag.html"
1021
+ },
1022
+ "3": {
1023
+ "name": "invalid.illegal.unrecognized-tag.html"
1024
+ },
1025
+ "4": {
1026
+ "name": "punctuation.definition.tag.end.html"
1027
+ },
1028
+ "5": {
1029
+ "name": "punctuation.definition.tag.end.html"
1030
+ }
1031
+ },
1032
+ "name": "meta.element.other.invalid.html",
1033
+ "patterns": [
1034
+ {
1035
+ "begin": "(?<!>)\\G",
1036
+ "end": "(?=/>)|>",
1037
+ "endCaptures": {
1038
+ "0": {
1039
+ "name": "punctuation.definition.tag.end.html"
1040
+ }
1041
+ },
1042
+ "name": "meta.tag.other.invalid.start.html",
1043
+ "patterns": [
1044
+ {
1045
+ "include": "#attribute"
1046
+ }
1047
+ ]
1048
+ },
1049
+ {
1050
+ "include": "#tags"
1051
+ }
1052
+ ]
1053
+ },
1054
+ {
1055
+ "include": "#tags-invalid"
1056
+ }
1057
+ ]
1058
+ }
1059
+ }
1060
+ },
1061
+ "svg": {
1062
+ "patterns": [
1063
+ {
1064
+ "begin": "(?i)(<)(svg)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(>))?",
1065
+ "beginCaptures": {
1066
+ "0": {
1067
+ "name": "meta.tag.structure.$2.start.html"
1068
+ },
1069
+ "1": {
1070
+ "name": "punctuation.definition.tag.begin.html"
1071
+ },
1072
+ "2": {
1073
+ "name": "entity.name.tag.html"
1074
+ },
1075
+ "3": {
1076
+ "patterns": [
1077
+ {
1078
+ "include": "#attribute"
1079
+ }
1080
+ ]
1081
+ },
1082
+ "5": {
1083
+ "name": "punctuation.definition.tag.end.html"
1084
+ }
1085
+ },
1086
+ "end": "(?i)(</)(\\2)\\s*(>)",
1087
+ "endCaptures": {
1088
+ "0": {
1089
+ "name": "meta.tag.structure.$2.end.html"
1090
+ },
1091
+ "1": {
1092
+ "name": "punctuation.definition.tag.begin.html"
1093
+ },
1094
+ "2": {
1095
+ "name": "entity.name.tag.html"
1096
+ },
1097
+ "3": {
1098
+ "name": "punctuation.definition.tag.end.html"
1099
+ }
1100
+ },
1101
+ "name": "meta.element.structure.$2.html",
1102
+ "patterns": [
1103
+ {
1104
+ "begin": "(?<!>)\\G",
1105
+ "end": ">",
1106
+ "endCaptures": {
1107
+ "0": {
1108
+ "name": "punctuation.definition.tag.end.html"
1109
+ }
1110
+ },
1111
+ "name": "meta.tag.structure.start.html",
1112
+ "patterns": [
1113
+ {
1114
+ "include": "#attribute"
1115
+ }
1116
+ ]
1117
+ },
1118
+ {
1119
+ "include": "#tags"
1120
+ }
1121
+ ]
1122
+ }
1123
+ ],
1124
+ "repository": {
1125
+ "attribute": {
1126
+ "patterns": [
1127
+ {
1128
+ "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:-])",
1129
+ "beginCaptures": {
1130
+ "0": {
1131
+ "name": "entity.other.attribute-name.html"
1132
+ }
1133
+ },
1134
+ "end": "(?=\\s*+[^=\\s])",
1135
+ "name": "meta.attribute.$1.html",
1136
+ "patterns": [
1137
+ {
1138
+ "include": "#attribute-interior"
1139
+ }
1140
+ ]
1141
+ },
1142
+ {
1143
+ "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}]+)",
1144
+ "beginCaptures": {
1145
+ "0": {
1146
+ "name": "entity.other.attribute-name.html"
1147
+ }
1148
+ },
1149
+ "comment": "Anything else that is valid",
1150
+ "end": "(?=\\s*+[^=\\s])",
1151
+ "name": "meta.attribute.unrecognized.$1.html",
1152
+ "patterns": [
1153
+ {
1154
+ "include": "#attribute-interior"
1155
+ }
1156
+ ]
1157
+ },
1158
+ {
1159
+ "match": "[^\\s>]+",
1160
+ "name": "invalid.illegal.character-not-allowed-here.html"
1161
+ }
1162
+ ]
1163
+ },
1164
+ "tags": {
1165
+ "patterns": [
1166
+ {
1167
+ "include": "#comment"
1168
+ },
1169
+ {
1170
+ "include": "#cdata"
1171
+ },
1172
+ {
1173
+ "captures": {
1174
+ "0": {
1175
+ "name": "meta.tag.metadata.svg.$2.void.html"
1176
+ },
1177
+ "1": {
1178
+ "name": "punctuation.definition.tag.begin.html"
1179
+ },
1180
+ "2": {
1181
+ "name": "entity.name.tag.html"
1182
+ },
1183
+ "3": {
1184
+ "patterns": [
1185
+ {
1186
+ "include": "#attribute"
1187
+ }
1188
+ ]
1189
+ },
1190
+ "5": {
1191
+ "name": "punctuation.definition.tag.end.html"
1192
+ }
1193
+ },
1194
+ "match": "(?i)(<)(color-profile|desc|metadata|script|style|title)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(/>))",
1195
+ "name": "meta.element.metadata.svg.$2.html"
1196
+ },
1197
+ {
1198
+ "begin": "(?i)(<)(color-profile|desc|metadata|script|style|title)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(>))?",
1199
+ "beginCaptures": {
1200
+ "0": {
1201
+ "name": "meta.tag.metadata.svg.$2.start.html"
1202
+ },
1203
+ "1": {
1204
+ "name": "punctuation.definition.tag.begin.html"
1205
+ },
1206
+ "2": {
1207
+ "name": "entity.name.tag.html"
1208
+ },
1209
+ "3": {
1210
+ "patterns": [
1211
+ {
1212
+ "include": "#attribute"
1213
+ }
1214
+ ]
1215
+ },
1216
+ "5": {
1217
+ "name": "punctuation.definition.tag.end.html"
1218
+ }
1219
+ },
1220
+ "end": "(?i)(</)(\\2)\\s*(>)|(/>)|(?=</\\w+)",
1221
+ "endCaptures": {
1222
+ "0": {
1223
+ "name": "meta.tag.metadata.svg.$2.end.html"
1224
+ },
1225
+ "1": {
1226
+ "name": "punctuation.definition.tag.begin.html"
1227
+ },
1228
+ "2": {
1229
+ "name": "entity.name.tag.html"
1230
+ },
1231
+ "3": {
1232
+ "name": "punctuation.definition.tag.end.html"
1233
+ },
1234
+ "4": {
1235
+ "name": "punctuation.definition.tag.end.html"
1236
+ }
1237
+ },
1238
+ "name": "meta.element.metadata.svg.$2.html",
1239
+ "patterns": [
1240
+ {
1241
+ "begin": "(?<!>)\\G",
1242
+ "end": "(?=/>)|>",
1243
+ "endCaptures": {
1244
+ "0": {
1245
+ "name": "punctuation.definition.tag.end.html"
1246
+ }
1247
+ },
1248
+ "name": "meta.tag.metadata.start.html",
1249
+ "patterns": [
1250
+ {
1251
+ "include": "#attribute"
1252
+ }
1253
+ ]
1254
+ },
1255
+ {
1256
+ "include": "#tags"
1257
+ }
1258
+ ]
1259
+ },
1260
+ {
1261
+ "captures": {
1262
+ "0": {
1263
+ "name": "meta.tag.structure.svg.$2.void.html"
1264
+ },
1265
+ "1": {
1266
+ "name": "punctuation.definition.tag.begin.html"
1267
+ },
1268
+ "2": {
1269
+ "name": "entity.name.tag.html"
1270
+ },
1271
+ "3": {
1272
+ "patterns": [
1273
+ {
1274
+ "include": "#attribute"
1275
+ }
1276
+ ]
1277
+ },
1278
+ "5": {
1279
+ "name": "punctuation.definition.tag.end.html"
1280
+ }
1281
+ },
1282
+ "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|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(/>))",
1283
+ "name": "meta.element.structure.svg.$2.html"
1284
+ },
1285
+ {
1286
+ "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|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(>))?",
1287
+ "beginCaptures": {
1288
+ "0": {
1289
+ "name": "meta.tag.structure.svg.$2.start.html"
1290
+ },
1291
+ "1": {
1292
+ "name": "punctuation.definition.tag.begin.html"
1293
+ },
1294
+ "2": {
1295
+ "name": "entity.name.tag.html"
1296
+ },
1297
+ "3": {
1298
+ "patterns": [
1299
+ {
1300
+ "include": "#attribute"
1301
+ }
1302
+ ]
1303
+ },
1304
+ "5": {
1305
+ "name": "punctuation.definition.tag.end.html"
1306
+ }
1307
+ },
1308
+ "end": "(?i)(</)(\\2)\\s*(>)|(/>)|(?=</\\w+)",
1309
+ "endCaptures": {
1310
+ "0": {
1311
+ "name": "meta.tag.structure.svg.$2.end.html"
1312
+ },
1313
+ "1": {
1314
+ "name": "punctuation.definition.tag.begin.html"
1315
+ },
1316
+ "2": {
1317
+ "name": "entity.name.tag.html"
1318
+ },
1319
+ "3": {
1320
+ "name": "punctuation.definition.tag.end.html"
1321
+ },
1322
+ "4": {
1323
+ "name": "punctuation.definition.tag.end.html"
1324
+ }
1325
+ },
1326
+ "name": "meta.element.structure.svg.$2.html",
1327
+ "patterns": [
1328
+ {
1329
+ "begin": "(?<!>)\\G",
1330
+ "end": "(?=/>)|>",
1331
+ "endCaptures": {
1332
+ "0": {
1333
+ "name": "punctuation.definition.tag.end.html"
1334
+ }
1335
+ },
1336
+ "name": "meta.tag.structure.start.html",
1337
+ "patterns": [
1338
+ {
1339
+ "include": "#attribute"
1340
+ }
1341
+ ]
1342
+ },
1343
+ {
1344
+ "include": "#tags"
1345
+ }
1346
+ ]
1347
+ },
1348
+ {
1349
+ "captures": {
1350
+ "0": {
1351
+ "name": "meta.tag.inline.svg.$2.void.html"
1352
+ },
1353
+ "1": {
1354
+ "name": "punctuation.definition.tag.begin.html"
1355
+ },
1356
+ "2": {
1357
+ "name": "entity.name.tag.html"
1358
+ },
1359
+ "3": {
1360
+ "patterns": [
1361
+ {
1362
+ "include": "#attribute"
1363
+ }
1364
+ ]
1365
+ },
1366
+ "5": {
1367
+ "name": "punctuation.definition.tag.end.html"
1368
+ }
1369
+ },
1370
+ "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|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(/>))",
1371
+ "name": "meta.element.inline.svg.$2.html"
1372
+ },
1373
+ {
1374
+ "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|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(>))?",
1375
+ "beginCaptures": {
1376
+ "0": {
1377
+ "name": "meta.tag.inline.svg.$2.start.html"
1378
+ },
1379
+ "1": {
1380
+ "name": "punctuation.definition.tag.begin.html"
1381
+ },
1382
+ "2": {
1383
+ "name": "entity.name.tag.html"
1384
+ },
1385
+ "3": {
1386
+ "patterns": [
1387
+ {
1388
+ "include": "#attribute"
1389
+ }
1390
+ ]
1391
+ },
1392
+ "5": {
1393
+ "name": "punctuation.definition.tag.end.html"
1394
+ }
1395
+ },
1396
+ "end": "(?i)(</)(\\2)\\s*(>)|(/>)|(?=</\\w+)",
1397
+ "endCaptures": {
1398
+ "0": {
1399
+ "name": "meta.tag.inline.svg.$2.end.html"
1400
+ },
1401
+ "1": {
1402
+ "name": "punctuation.definition.tag.begin.html"
1403
+ },
1404
+ "2": {
1405
+ "name": "entity.name.tag.html"
1406
+ },
1407
+ "3": {
1408
+ "name": "punctuation.definition.tag.end.html"
1409
+ },
1410
+ "4": {
1411
+ "name": "punctuation.definition.tag.end.html"
1412
+ }
1413
+ },
1414
+ "name": "meta.element.inline.svg.$2.html",
1415
+ "patterns": [
1416
+ {
1417
+ "begin": "(?<!>)\\G",
1418
+ "end": "(?=/>)|>",
1419
+ "endCaptures": {
1420
+ "0": {
1421
+ "name": "punctuation.definition.tag.end.html"
1422
+ }
1423
+ },
1424
+ "name": "meta.tag.inline.start.html",
1425
+ "patterns": [
1426
+ {
1427
+ "include": "#attribute"
1428
+ }
1429
+ ]
1430
+ },
1431
+ {
1432
+ "include": "#tags"
1433
+ }
1434
+ ]
1435
+ },
1436
+ {
1437
+ "captures": {
1438
+ "0": {
1439
+ "name": "meta.tag.object.svg.$2.void.html"
1440
+ },
1441
+ "1": {
1442
+ "name": "punctuation.definition.tag.begin.html"
1443
+ },
1444
+ "2": {
1445
+ "name": "entity.name.tag.html"
1446
+ },
1447
+ "3": {
1448
+ "patterns": [
1449
+ {
1450
+ "include": "#attribute"
1451
+ }
1452
+ ]
1453
+ },
1454
+ "5": {
1455
+ "name": "punctuation.definition.tag.end.html"
1456
+ }
1457
+ },
1458
+ "match": "(?i)(<)(circle|ellipse|feImage|foreignObject|image|line|path|polygon|polyline|rect|symbol|use|view)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(/>))",
1459
+ "name": "meta.element.object.svg.$2.html"
1460
+ },
1461
+ {
1462
+ "begin": "(?i)(<)(a|circle|ellipse|feImage|foreignObject|image|line|path|polygon|polyline|rect|symbol|use|view)(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(>))?",
1463
+ "beginCaptures": {
1464
+ "0": {
1465
+ "name": "meta.tag.object.svg.$2.start.html"
1466
+ },
1467
+ "1": {
1468
+ "name": "punctuation.definition.tag.begin.html"
1469
+ },
1470
+ "2": {
1471
+ "name": "entity.name.tag.html"
1472
+ },
1473
+ "3": {
1474
+ "patterns": [
1475
+ {
1476
+ "include": "#attribute"
1477
+ }
1478
+ ]
1479
+ },
1480
+ "5": {
1481
+ "name": "punctuation.definition.tag.end.html"
1482
+ }
1483
+ },
1484
+ "end": "(?i)(</)(\\2)\\s*(>)|(/>)|(?=</\\w+)",
1485
+ "endCaptures": {
1486
+ "0": {
1487
+ "name": "meta.tag.object.svg.$2.end.html"
1488
+ },
1489
+ "1": {
1490
+ "name": "punctuation.definition.tag.begin.html"
1491
+ },
1492
+ "2": {
1493
+ "name": "entity.name.tag.html"
1494
+ },
1495
+ "3": {
1496
+ "name": "punctuation.definition.tag.end.html"
1497
+ },
1498
+ "4": {
1499
+ "name": "punctuation.definition.tag.end.html"
1500
+ }
1501
+ },
1502
+ "name": "meta.element.object.svg.$2.html",
1503
+ "patterns": [
1504
+ {
1505
+ "begin": "(?<!>)\\G",
1506
+ "end": "(?=/>)|>",
1507
+ "endCaptures": {
1508
+ "0": {
1509
+ "name": "punctuation.definition.tag.end.html"
1510
+ }
1511
+ },
1512
+ "name": "meta.tag.object.start.html",
1513
+ "patterns": [
1514
+ {
1515
+ "include": "#attribute"
1516
+ }
1517
+ ]
1518
+ },
1519
+ {
1520
+ "include": "#tags"
1521
+ }
1522
+ ]
1523
+ },
1524
+ {
1525
+ "captures": {
1526
+ "0": {
1527
+ "name": "meta.tag.other.svg.$2.void.html"
1528
+ },
1529
+ "1": {
1530
+ "name": "punctuation.definition.tag.begin.html"
1531
+ },
1532
+ "2": {
1533
+ "name": "entity.name.tag.html"
1534
+ },
1535
+ "3": {
1536
+ "name": "invalid.deprecated.html"
1537
+ },
1538
+ "4": {
1539
+ "patterns": [
1540
+ {
1541
+ "include": "#attribute"
1542
+ }
1543
+ ]
1544
+ },
1545
+ "6": {
1546
+ "name": "punctuation.definition.tag.end.html"
1547
+ }
1548
+ },
1549
+ "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|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(/>))",
1550
+ "name": "meta.element.other.svg.$2.html"
1551
+ },
1552
+ {
1553
+ "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|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(>))?",
1554
+ "beginCaptures": {
1555
+ "0": {
1556
+ "name": "meta.tag.other.svg.$2.start.html"
1557
+ },
1558
+ "1": {
1559
+ "name": "punctuation.definition.tag.begin.html"
1560
+ },
1561
+ "2": {
1562
+ "name": "entity.name.tag.html"
1563
+ },
1564
+ "3": {
1565
+ "name": "invalid.deprecated.html"
1566
+ },
1567
+ "4": {
1568
+ "patterns": [
1569
+ {
1570
+ "include": "#attribute"
1571
+ }
1572
+ ]
1573
+ },
1574
+ "6": {
1575
+ "name": "punctuation.definition.tag.end.html"
1576
+ }
1577
+ },
1578
+ "end": "(?i)(</)((\\2))\\s*(>)|(/>)|(?=</\\w+)",
1579
+ "endCaptures": {
1580
+ "0": {
1581
+ "name": "meta.tag.other.svg.$2.end.html"
1582
+ },
1583
+ "1": {
1584
+ "name": "punctuation.definition.tag.begin.html"
1585
+ },
1586
+ "2": {
1587
+ "name": "entity.name.tag.html"
1588
+ },
1589
+ "3": {
1590
+ "name": "invalid.deprecated.html"
1591
+ },
1592
+ "4": {
1593
+ "name": "punctuation.definition.tag.end.html"
1594
+ },
1595
+ "5": {
1596
+ "name": "punctuation.definition.tag.end.html"
1597
+ }
1598
+ },
1599
+ "name": "meta.element.other.svg.$2.html",
1600
+ "patterns": [
1601
+ {
1602
+ "begin": "(?<!>)\\G",
1603
+ "end": "(?=/>)|>",
1604
+ "endCaptures": {
1605
+ "0": {
1606
+ "name": "punctuation.definition.tag.end.html"
1607
+ }
1608
+ },
1609
+ "name": "meta.tag.other.start.html",
1610
+ "patterns": [
1611
+ {
1612
+ "include": "#attribute"
1613
+ }
1614
+ ]
1615
+ },
1616
+ {
1617
+ "include": "#tags"
1618
+ }
1619
+ ]
1620
+ },
1621
+ {
1622
+ "captures": {
1623
+ "0": {
1624
+ "name": "meta.tag.other.invalid.void.html"
1625
+ },
1626
+ "1": {
1627
+ "name": "punctuation.definition.tag.begin.html"
1628
+ },
1629
+ "2": {
1630
+ "name": "entity.name.tag.html"
1631
+ },
1632
+ "3": {
1633
+ "name": "invalid.illegal.unrecognized-tag.html"
1634
+ },
1635
+ "4": {
1636
+ "patterns": [
1637
+ {
1638
+ "include": "#attribute"
1639
+ }
1640
+ ]
1641
+ },
1642
+ "6": {
1643
+ "name": "punctuation.definition.tag.end.html"
1644
+ }
1645
+ },
1646
+ "match": "(?i)(<)(([\\w:]+))(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(/>))",
1647
+ "name": "meta.element.other.invalid.html"
1648
+ },
1649
+ {
1650
+ "begin": "(?i)(<)((\\w[^\\s>]*))(?=\\s|/?>)(?:(([^\"'>]|\"[^\"]*\"|'[^']*')*)(>))?",
1651
+ "beginCaptures": {
1652
+ "0": {
1653
+ "name": "meta.tag.other.invalid.start.html"
1654
+ },
1655
+ "1": {
1656
+ "name": "punctuation.definition.tag.begin.html"
1657
+ },
1658
+ "2": {
1659
+ "name": "entity.name.tag.html"
1660
+ },
1661
+ "3": {
1662
+ "name": "invalid.illegal.unrecognized-tag.html"
1663
+ },
1664
+ "4": {
1665
+ "patterns": [
1666
+ {
1667
+ "include": "#attribute"
1668
+ }
1669
+ ]
1670
+ },
1671
+ "6": {
1672
+ "name": "punctuation.definition.tag.end.html"
1673
+ }
1674
+ },
1675
+ "end": "(?i)(</)((\\2))\\s*(>)|(/>)|(?=</\\w+)",
1676
+ "endCaptures": {
1677
+ "0": {
1678
+ "name": "meta.tag.other.invalid.end.html"
1679
+ },
1680
+ "1": {
1681
+ "name": "punctuation.definition.tag.begin.html"
1682
+ },
1683
+ "2": {
1684
+ "name": "entity.name.tag.html"
1685
+ },
1686
+ "3": {
1687
+ "name": "invalid.illegal.unrecognized-tag.html"
1688
+ },
1689
+ "4": {
1690
+ "name": "punctuation.definition.tag.end.html"
1691
+ },
1692
+ "5": {
1693
+ "name": "punctuation.definition.tag.end.html"
1694
+ }
1695
+ },
1696
+ "name": "meta.element.other.invalid.html",
1697
+ "patterns": [
1698
+ {
1699
+ "begin": "(?<!>)\\G",
1700
+ "end": "(?=/>)|>",
1701
+ "endCaptures": {
1702
+ "0": {
1703
+ "name": "punctuation.definition.tag.end.html"
1704
+ }
1705
+ },
1706
+ "name": "meta.tag.other.invalid.start.html",
1707
+ "patterns": [
1708
+ {
1709
+ "include": "#attribute"
1710
+ }
1711
+ ]
1712
+ },
1713
+ {
1714
+ "include": "#tags"
1715
+ }
1716
+ ]
1717
+ },
1718
+ {
1719
+ "include": "#tags-invalid"
1720
+ }
1721
+ ]
1722
+ }
1723
+ }
1724
+ },
1725
+ "tags-invalid": {
1726
+ "patterns": [
1727
+ {
1728
+ "begin": "(</?)((\\w[^\\s>]*))(?<!/)",
1729
+ "beginCaptures": {
1730
+ "1": {
1731
+ "name": "punctuation.definition.tag.begin.html"
1732
+ },
1733
+ "2": {
1734
+ "name": "entity.name.tag.html"
1735
+ },
1736
+ "3": {
1737
+ "name": "invalid.illegal.unrecognized-tag.html"
1738
+ }
1739
+ },
1740
+ "end": "((?: ?/)?>)",
1741
+ "endCaptures": {
1742
+ "1": {
1743
+ "name": "punctuation.definition.tag.end.html"
1744
+ }
1745
+ },
1746
+ "name": "meta.tag.other.$2.html",
1747
+ "patterns": [
1748
+ {
1749
+ "include": "#attribute"
1750
+ }
1751
+ ]
1752
+ }
1753
+ ]
1754
+ },
1755
+ "tags-valid": {
1756
+ "patterns": [
1757
+ {
1758
+ "begin": "(^[ \\t]+)?(?=<(?i:style)\\b(?!-))",
1759
+ "beginCaptures": {
1760
+ "1": {
1761
+ "name": "punctuation.whitespace.embedded.leading.html"
1762
+ }
1763
+ },
1764
+ "end": "(?!\\G)([ \\t]*$\\n?)?",
1765
+ "endCaptures": {
1766
+ "1": {
1767
+ "name": "punctuation.whitespace.embedded.trailing.html"
1768
+ }
1769
+ },
1770
+ "patterns": [
1771
+ {
1772
+ "begin": "(?i)(<)(style)(?=\\s|/?>)",
1773
+ "beginCaptures": {
1774
+ "0": {
1775
+ "name": "meta.tag.metadata.style.start.html"
1776
+ },
1777
+ "1": {
1778
+ "name": "punctuation.definition.tag.begin.html"
1779
+ },
1780
+ "2": {
1781
+ "name": "entity.name.tag.html"
1782
+ }
1783
+ },
1784
+ "end": "(?i)((<)/)(style)\\s*(>)",
1785
+ "endCaptures": {
1786
+ "0": {
1787
+ "name": "meta.tag.metadata.style.end.html"
1788
+ },
1789
+ "1": {
1790
+ "name": "punctuation.definition.tag.begin.html"
1791
+ },
1792
+ "2": {
1793
+ "name": "source.css"
1794
+ },
1795
+ "3": {
1796
+ "name": "entity.name.tag.html"
1797
+ },
1798
+ "4": {
1799
+ "name": "punctuation.definition.tag.end.html"
1800
+ }
1801
+ },
1802
+ "name": "meta.embedded.block.html",
1803
+ "patterns": [
1804
+ {
1805
+ "begin": "\\G",
1806
+ "captures": {
1807
+ "1": {
1808
+ "name": "punctuation.definition.tag.end.html"
1809
+ }
1810
+ },
1811
+ "end": "(>)",
1812
+ "name": "meta.tag.metadata.style.start.html",
1813
+ "patterns": [
1814
+ {
1815
+ "include": "#attribute"
1816
+ }
1817
+ ]
1818
+ },
1819
+ {
1820
+ "begin": "(?!\\G)",
1821
+ "end": "(?=</(?i:style))",
1822
+ "name": "source.css",
1823
+ "patterns": [
1824
+ {
1825
+ "include": "source.css"
1826
+ }
1827
+ ]
1828
+ }
1829
+ ]
1830
+ }
1831
+ ]
1832
+ },
1833
+ {
1834
+ "begin": "(^[ \\t]+)?(?=<(?i:script)\\b(?!-))",
1835
+ "beginCaptures": {
1836
+ "1": {
1837
+ "name": "punctuation.whitespace.embedded.leading.html"
1838
+ }
1839
+ },
1840
+ "end": "(?!\\G)([ \\t]*$\\n?)?",
1841
+ "endCaptures": {
1842
+ "1": {
1843
+ "name": "punctuation.whitespace.embedded.trailing.html"
1844
+ }
1845
+ },
1846
+ "patterns": [
1847
+ {
1848
+ "begin": "(<)((?i:script))\\b",
1849
+ "beginCaptures": {
1850
+ "0": {
1851
+ "name": "meta.tag.metadata.script.start.html"
1852
+ },
1853
+ "1": {
1854
+ "name": "punctuation.definition.tag.begin.html"
1855
+ },
1856
+ "2": {
1857
+ "name": "entity.name.tag.html"
1858
+ }
1859
+ },
1860
+ "end": "(/)((?i:script))(>)",
1861
+ "endCaptures": {
1862
+ "0": {
1863
+ "name": "meta.tag.metadata.script.end.html"
1864
+ },
1865
+ "1": {
1866
+ "name": "punctuation.definition.tag.begin.html"
1867
+ },
1868
+ "2": {
1869
+ "name": "entity.name.tag.html"
1870
+ },
1871
+ "3": {
1872
+ "name": "punctuation.definition.tag.end.html"
1873
+ }
1874
+ },
1875
+ "name": "meta.embedded.block.html",
1876
+ "patterns": [
1877
+ {
1878
+ "begin": "\\G",
1879
+ "end": "(?=/)",
1880
+ "patterns": [
1881
+ {
1882
+ "begin": "(>)",
1883
+ "beginCaptures": {
1884
+ "0": {
1885
+ "name": "meta.tag.metadata.script.start.html"
1886
+ },
1887
+ "1": {
1888
+ "name": "punctuation.definition.tag.end.html"
1889
+ }
1890
+ },
1891
+ "end": "((<))(?=/(?i:script))",
1892
+ "endCaptures": {
1893
+ "0": {
1894
+ "name": "meta.tag.metadata.script.end.html"
1895
+ },
1896
+ "1": {
1897
+ "name": "punctuation.definition.tag.begin.html"
1898
+ },
1899
+ "2": {
1900
+ "name": "source.js"
1901
+ }
1902
+ },
1903
+ "patterns": [
1904
+ {
1905
+ "begin": "\\G",
1906
+ "end": "(?=</(?i:script))",
1907
+ "name": "source.js",
1908
+ "patterns": [
1909
+ {
1910
+ "begin": "(^[ \\t]+)?(?=//)",
1911
+ "beginCaptures": {
1912
+ "1": {
1913
+ "name": "punctuation.whitespace.comment.leading.js"
1914
+ }
1915
+ },
1916
+ "end": "(?!\\G)",
1917
+ "patterns": [
1918
+ {
1919
+ "begin": "//",
1920
+ "beginCaptures": {
1921
+ "0": {
1922
+ "name": "punctuation.definition.comment.js"
1923
+ }
1924
+ },
1925
+ "end": "(?=</script)|\\n",
1926
+ "name": "comment.line.double-slash.js"
1927
+ }
1928
+ ]
1929
+ },
1930
+ {
1931
+ "begin": "/\\*",
1932
+ "captures": {
1933
+ "0": {
1934
+ "name": "punctuation.definition.comment.js"
1935
+ }
1936
+ },
1937
+ "end": "\\*/|(?=</script)",
1938
+ "name": "comment.block.js"
1939
+ },
1940
+ {
1941
+ "include": "source.js"
1942
+ }
1943
+ ]
1944
+ }
1945
+ ]
1946
+ },
1947
+ {
1948
+ "begin": "\\G",
1949
+ "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)",
1950
+ "name": "meta.tag.metadata.script.start.html",
1951
+ "patterns": [
1952
+ {
1953
+ "include": "#attribute"
1954
+ }
1955
+ ]
1956
+ },
1957
+ {
1958
+ "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)",
1959
+ "end": "((<))(?=/(?i:script))",
1960
+ "endCaptures": {
1961
+ "0": {
1962
+ "name": "meta.tag.metadata.script.end.html"
1963
+ },
1964
+ "1": {
1965
+ "name": "punctuation.definition.tag.begin.html"
1966
+ },
1967
+ "2": {
1968
+ "name": "text.html.basic"
1969
+ }
1970
+ },
1971
+ "patterns": [
1972
+ {
1973
+ "begin": "\\G",
1974
+ "end": "(>)",
1975
+ "endCaptures": {
1976
+ "1": {
1977
+ "name": "punctuation.definition.tag.end.html"
1978
+ }
1979
+ },
1980
+ "name": "meta.tag.metadata.script.start.html",
1981
+ "patterns": [
1982
+ {
1983
+ "include": "#attribute"
1984
+ }
1985
+ ]
1986
+ },
1987
+ {
1988
+ "begin": "(?!\\G)",
1989
+ "end": "(?=</(?i:script))",
1990
+ "name": "text.html.basic",
1991
+ "patterns": [
1992
+ {
1993
+ "include": "text.html.basic"
1994
+ }
1995
+ ]
1996
+ }
1997
+ ]
1998
+ },
1999
+ {
2000
+ "begin": "(?=(?i:type))",
2001
+ "end": "(<)(?=/(?i:script))",
2002
+ "endCaptures": {
2003
+ "0": {
2004
+ "name": "meta.tag.metadata.script.end.html"
2005
+ },
2006
+ "1": {
2007
+ "name": "punctuation.definition.tag.begin.html"
2008
+ }
2009
+ },
2010
+ "patterns": [
2011
+ {
2012
+ "begin": "\\G",
2013
+ "end": "(>)",
2014
+ "endCaptures": {
2015
+ "1": {
2016
+ "name": "punctuation.definition.tag.end.html"
2017
+ }
2018
+ },
2019
+ "name": "meta.tag.metadata.script.start.html",
2020
+ "patterns": [
2021
+ {
2022
+ "include": "#attribute"
2023
+ }
2024
+ ]
2025
+ },
2026
+ {
2027
+ "begin": "(?!\\G)",
2028
+ "end": "(?=</(?i:script))",
2029
+ "name": "source.unknown"
2030
+ }
2031
+ ]
2032
+ }
2033
+ ]
2034
+ }
2035
+ ]
2036
+ }
2037
+ ]
2038
+ },
2039
+ {
2040
+ "begin": "(?i)(<)(base|link|meta)(?=\\s|/?>)",
2041
+ "beginCaptures": {
2042
+ "1": {
2043
+ "name": "punctuation.definition.tag.begin.html"
2044
+ },
2045
+ "2": {
2046
+ "name": "entity.name.tag.html"
2047
+ }
2048
+ },
2049
+ "end": "/?>",
2050
+ "endCaptures": {
2051
+ "0": {
2052
+ "name": "punctuation.definition.tag.end.html"
2053
+ }
2054
+ },
2055
+ "name": "meta.tag.metadata.$2.void.html",
2056
+ "patterns": [
2057
+ {
2058
+ "include": "#attribute"
2059
+ }
2060
+ ]
2061
+ },
2062
+ {
2063
+ "begin": "(?i)(<)(noscript|title)(?=\\s|/?>)",
2064
+ "beginCaptures": {
2065
+ "1": {
2066
+ "name": "punctuation.definition.tag.begin.html"
2067
+ },
2068
+ "2": {
2069
+ "name": "entity.name.tag.html"
2070
+ }
2071
+ },
2072
+ "end": ">",
2073
+ "endCaptures": {
2074
+ "0": {
2075
+ "name": "punctuation.definition.tag.end.html"
2076
+ }
2077
+ },
2078
+ "name": "meta.tag.metadata.$2.start.html",
2079
+ "patterns": [
2080
+ {
2081
+ "include": "#attribute"
2082
+ }
2083
+ ]
2084
+ },
2085
+ {
2086
+ "begin": "(?i)(</)(noscript|title)(?=\\s|/?>)",
2087
+ "beginCaptures": {
2088
+ "1": {
2089
+ "name": "punctuation.definition.tag.begin.html"
2090
+ },
2091
+ "2": {
2092
+ "name": "entity.name.tag.html"
2093
+ }
2094
+ },
2095
+ "end": ">",
2096
+ "endCaptures": {
2097
+ "0": {
2098
+ "name": "punctuation.definition.tag.end.html"
2099
+ }
2100
+ },
2101
+ "name": "meta.tag.metadata.$2.end.html",
2102
+ "patterns": [
2103
+ {
2104
+ "include": "#attribute"
2105
+ }
2106
+ ]
2107
+ },
2108
+ {
2109
+ "begin": "(?i)(<)(col|hr|input)(?=\\s|/?>)",
2110
+ "beginCaptures": {
2111
+ "1": {
2112
+ "name": "punctuation.definition.tag.begin.html"
2113
+ },
2114
+ "2": {
2115
+ "name": "entity.name.tag.html"
2116
+ }
2117
+ },
2118
+ "end": "/?>",
2119
+ "endCaptures": {
2120
+ "0": {
2121
+ "name": "punctuation.definition.tag.end.html"
2122
+ }
2123
+ },
2124
+ "name": "meta.tag.structure.$2.void.html",
2125
+ "patterns": [
2126
+ {
2127
+ "include": "#attribute"
2128
+ }
2129
+ ]
2130
+ },
2131
+ {
2132
+ "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|/?>)",
2133
+ "beginCaptures": {
2134
+ "1": {
2135
+ "name": "punctuation.definition.tag.begin.html"
2136
+ },
2137
+ "2": {
2138
+ "name": "entity.name.tag.html"
2139
+ }
2140
+ },
2141
+ "end": ">",
2142
+ "endCaptures": {
2143
+ "0": {
2144
+ "name": "punctuation.definition.tag.end.html"
2145
+ }
2146
+ },
2147
+ "name": "meta.tag.structure.$2.start.html",
2148
+ "patterns": [
2149
+ {
2150
+ "include": "#attribute"
2151
+ }
2152
+ ]
2153
+ },
2154
+ {
2155
+ "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|/?>)",
2156
+ "beginCaptures": {
2157
+ "1": {
2158
+ "name": "punctuation.definition.tag.begin.html"
2159
+ },
2160
+ "2": {
2161
+ "name": "entity.name.tag.html"
2162
+ }
2163
+ },
2164
+ "end": ">",
2165
+ "endCaptures": {
2166
+ "0": {
2167
+ "name": "punctuation.definition.tag.end.html"
2168
+ }
2169
+ },
2170
+ "name": "meta.tag.structure.$2.end.html",
2171
+ "patterns": [
2172
+ {
2173
+ "include": "#attribute"
2174
+ }
2175
+ ]
2176
+ },
2177
+ {
2178
+ "begin": "(?i)(<)(area|br|wbr)(?=\\s|/?>)",
2179
+ "beginCaptures": {
2180
+ "1": {
2181
+ "name": "punctuation.definition.tag.begin.html"
2182
+ },
2183
+ "2": {
2184
+ "name": "entity.name.tag.html"
2185
+ }
2186
+ },
2187
+ "end": "/?>",
2188
+ "endCaptures": {
2189
+ "0": {
2190
+ "name": "punctuation.definition.tag.end.html"
2191
+ }
2192
+ },
2193
+ "name": "meta.tag.inline.$2.void.html",
2194
+ "patterns": [
2195
+ {
2196
+ "include": "#attribute"
2197
+ }
2198
+ ]
2199
+ },
2200
+ {
2201
+ "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|/?>)",
2202
+ "beginCaptures": {
2203
+ "1": {
2204
+ "name": "punctuation.definition.tag.begin.html"
2205
+ },
2206
+ "2": {
2207
+ "name": "entity.name.tag.html"
2208
+ }
2209
+ },
2210
+ "end": ">",
2211
+ "endCaptures": {
2212
+ "0": {
2213
+ "name": "punctuation.definition.tag.end.html"
2214
+ }
2215
+ },
2216
+ "name": "meta.tag.inline.$2.start.html",
2217
+ "patterns": [
2218
+ {
2219
+ "include": "#attribute"
2220
+ }
2221
+ ]
2222
+ },
2223
+ {
2224
+ "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|/?>)",
2225
+ "beginCaptures": {
2226
+ "1": {
2227
+ "name": "punctuation.definition.tag.begin.html"
2228
+ },
2229
+ "2": {
2230
+ "name": "entity.name.tag.html"
2231
+ }
2232
+ },
2233
+ "end": ">",
2234
+ "endCaptures": {
2235
+ "0": {
2236
+ "name": "punctuation.definition.tag.end.html"
2237
+ }
2238
+ },
2239
+ "name": "meta.tag.inline.$2.end.html",
2240
+ "patterns": [
2241
+ {
2242
+ "include": "#attribute"
2243
+ }
2244
+ ]
2245
+ },
2246
+ {
2247
+ "begin": "(?i)(<)(embed|img|param|source|track)(?=\\s|/?>)",
2248
+ "beginCaptures": {
2249
+ "1": {
2250
+ "name": "punctuation.definition.tag.begin.html"
2251
+ },
2252
+ "2": {
2253
+ "name": "entity.name.tag.html"
2254
+ }
2255
+ },
2256
+ "end": "/?>",
2257
+ "endCaptures": {
2258
+ "0": {
2259
+ "name": "punctuation.definition.tag.end.html"
2260
+ }
2261
+ },
2262
+ "name": "meta.tag.object.$2.void.html",
2263
+ "patterns": [
2264
+ {
2265
+ "include": "#attribute"
2266
+ }
2267
+ ]
2268
+ },
2269
+ {
2270
+ "begin": "(?i)(<)(audio|canvas|iframe|object|picture|video)(?=\\s|/?>)",
2271
+ "beginCaptures": {
2272
+ "1": {
2273
+ "name": "punctuation.definition.tag.begin.html"
2274
+ },
2275
+ "2": {
2276
+ "name": "entity.name.tag.html"
2277
+ }
2278
+ },
2279
+ "end": ">",
2280
+ "endCaptures": {
2281
+ "0": {
2282
+ "name": "punctuation.definition.tag.end.html"
2283
+ }
2284
+ },
2285
+ "name": "meta.tag.object.$2.start.html",
2286
+ "patterns": [
2287
+ {
2288
+ "include": "#attribute"
2289
+ }
2290
+ ]
2291
+ },
2292
+ {
2293
+ "begin": "(?i)(</)(audio|canvas|iframe|object|picture|video)(?=\\s|/?>)",
2294
+ "beginCaptures": {
2295
+ "1": {
2296
+ "name": "punctuation.definition.tag.begin.html"
2297
+ },
2298
+ "2": {
2299
+ "name": "entity.name.tag.html"
2300
+ }
2301
+ },
2302
+ "end": ">",
2303
+ "endCaptures": {
2304
+ "0": {
2305
+ "name": "punctuation.definition.tag.end.html"
2306
+ }
2307
+ },
2308
+ "name": "meta.tag.object.$2.end.html",
2309
+ "patterns": [
2310
+ {
2311
+ "include": "#attribute"
2312
+ }
2313
+ ]
2314
+ },
2315
+ {
2316
+ "begin": "(?i)(<)((basefont|isindex))(?=\\s|/?>)",
2317
+ "beginCaptures": {
2318
+ "1": {
2319
+ "name": "punctuation.definition.tag.begin.html"
2320
+ },
2321
+ "2": {
2322
+ "name": "entity.name.tag.html"
2323
+ },
2324
+ "3": {
2325
+ "name": "invalid.deprecated.html"
2326
+ }
2327
+ },
2328
+ "end": "/?>",
2329
+ "endCaptures": {
2330
+ "0": {
2331
+ "name": "punctuation.definition.tag.end.html"
2332
+ }
2333
+ },
2334
+ "name": "meta.tag.metadata.$2.void.html",
2335
+ "patterns": [
2336
+ {
2337
+ "include": "#attribute"
2338
+ }
2339
+ ]
2340
+ },
2341
+ {
2342
+ "begin": "(?i)(<)((center|frameset|noembed|noframes))(?=\\s|/?>)",
2343
+ "beginCaptures": {
2344
+ "1": {
2345
+ "name": "punctuation.definition.tag.begin.html"
2346
+ },
2347
+ "2": {
2348
+ "name": "entity.name.tag.html"
2349
+ },
2350
+ "3": {
2351
+ "name": "invalid.deprecated.html"
2352
+ }
2353
+ },
2354
+ "end": ">",
2355
+ "endCaptures": {
2356
+ "0": {
2357
+ "name": "punctuation.definition.tag.end.html"
2358
+ }
2359
+ },
2360
+ "name": "meta.tag.structure.$2.start.html",
2361
+ "patterns": [
2362
+ {
2363
+ "include": "#attribute"
2364
+ }
2365
+ ]
2366
+ },
2367
+ {
2368
+ "begin": "(?i)(</)((center|frameset|noembed|noframes))(?=\\s|/?>)",
2369
+ "beginCaptures": {
2370
+ "1": {
2371
+ "name": "punctuation.definition.tag.begin.html"
2372
+ },
2373
+ "2": {
2374
+ "name": "entity.name.tag.html"
2375
+ },
2376
+ "3": {
2377
+ "name": "invalid.deprecated.html"
2378
+ }
2379
+ },
2380
+ "end": ">",
2381
+ "endCaptures": {
2382
+ "0": {
2383
+ "name": "punctuation.definition.tag.end.html"
2384
+ }
2385
+ },
2386
+ "name": "meta.tag.structure.$2.end.html",
2387
+ "patterns": [
2388
+ {
2389
+ "include": "#attribute"
2390
+ }
2391
+ ]
2392
+ },
2393
+ {
2394
+ "begin": "(?i)(<)((acronym|big|blink|font|strike|tt|xmp))(?=\\s|/?>)",
2395
+ "beginCaptures": {
2396
+ "1": {
2397
+ "name": "punctuation.definition.tag.begin.html"
2398
+ },
2399
+ "2": {
2400
+ "name": "entity.name.tag.html"
2401
+ },
2402
+ "3": {
2403
+ "name": "invalid.deprecated.html"
2404
+ }
2405
+ },
2406
+ "end": ">",
2407
+ "endCaptures": {
2408
+ "0": {
2409
+ "name": "punctuation.definition.tag.end.html"
2410
+ }
2411
+ },
2412
+ "name": "meta.tag.inline.$2.start.html",
2413
+ "patterns": [
2414
+ {
2415
+ "include": "#attribute"
2416
+ }
2417
+ ]
2418
+ },
2419
+ {
2420
+ "begin": "(?i)(</)((acronym|big|blink|font|strike|tt|xmp))(?=\\s|/?>)",
2421
+ "beginCaptures": {
2422
+ "1": {
2423
+ "name": "punctuation.definition.tag.begin.html"
2424
+ },
2425
+ "2": {
2426
+ "name": "entity.name.tag.html"
2427
+ },
2428
+ "3": {
2429
+ "name": "invalid.deprecated.html"
2430
+ }
2431
+ },
2432
+ "end": ">",
2433
+ "endCaptures": {
2434
+ "0": {
2435
+ "name": "punctuation.definition.tag.end.html"
2436
+ }
2437
+ },
2438
+ "name": "meta.tag.inline.$2.end.html",
2439
+ "patterns": [
2440
+ {
2441
+ "include": "#attribute"
2442
+ }
2443
+ ]
2444
+ },
2445
+ {
2446
+ "begin": "(?i)(<)((frame))(?=\\s|/?>)",
2447
+ "beginCaptures": {
2448
+ "1": {
2449
+ "name": "punctuation.definition.tag.begin.html"
2450
+ },
2451
+ "2": {
2452
+ "name": "entity.name.tag.html"
2453
+ },
2454
+ "3": {
2455
+ "name": "invalid.deprecated.html"
2456
+ }
2457
+ },
2458
+ "end": "/?>",
2459
+ "endCaptures": {
2460
+ "0": {
2461
+ "name": "punctuation.definition.tag.end.html"
2462
+ }
2463
+ },
2464
+ "name": "meta.tag.object.$2.void.html",
2465
+ "patterns": [
2466
+ {
2467
+ "include": "#attribute"
2468
+ }
2469
+ ]
2470
+ },
2471
+ {
2472
+ "begin": "(?i)(<)((applet))(?=\\s|/?>)",
2473
+ "beginCaptures": {
2474
+ "1": {
2475
+ "name": "punctuation.definition.tag.begin.html"
2476
+ },
2477
+ "2": {
2478
+ "name": "entity.name.tag.html"
2479
+ },
2480
+ "3": {
2481
+ "name": "invalid.deprecated.html"
2482
+ }
2483
+ },
2484
+ "end": ">",
2485
+ "endCaptures": {
2486
+ "0": {
2487
+ "name": "punctuation.definition.tag.end.html"
2488
+ }
2489
+ },
2490
+ "name": "meta.tag.object.$2.start.html",
2491
+ "patterns": [
2492
+ {
2493
+ "include": "#attribute"
2494
+ }
2495
+ ]
2496
+ },
2497
+ {
2498
+ "begin": "(?i)(</)((applet))(?=\\s|/?>)",
2499
+ "beginCaptures": {
2500
+ "1": {
2501
+ "name": "punctuation.definition.tag.begin.html"
2502
+ },
2503
+ "2": {
2504
+ "name": "entity.name.tag.html"
2505
+ },
2506
+ "3": {
2507
+ "name": "invalid.deprecated.html"
2508
+ }
2509
+ },
2510
+ "end": ">",
2511
+ "endCaptures": {
2512
+ "0": {
2513
+ "name": "punctuation.definition.tag.end.html"
2514
+ }
2515
+ },
2516
+ "name": "meta.tag.object.$2.end.html",
2517
+ "patterns": [
2518
+ {
2519
+ "include": "#attribute"
2520
+ }
2521
+ ]
2522
+ },
2523
+ {
2524
+ "begin": "(?i)(<)((dir|keygen|listing|menuitem|plaintext|spacer))(?=\\s|/?>)",
2525
+ "beginCaptures": {
2526
+ "1": {
2527
+ "name": "punctuation.definition.tag.begin.html"
2528
+ },
2529
+ "2": {
2530
+ "name": "entity.name.tag.html"
2531
+ },
2532
+ "3": {
2533
+ "name": "invalid.illegal.no-longer-supported.html"
2534
+ }
2535
+ },
2536
+ "end": ">",
2537
+ "endCaptures": {
2538
+ "0": {
2539
+ "name": "punctuation.definition.tag.end.html"
2540
+ }
2541
+ },
2542
+ "name": "meta.tag.other.$2.start.html",
2543
+ "patterns": [
2544
+ {
2545
+ "include": "#attribute"
2546
+ }
2547
+ ]
2548
+ },
2549
+ {
2550
+ "begin": "(?i)(</)((dir|keygen|listing|menuitem|plaintext|spacer))(?=\\s|/?>)",
2551
+ "beginCaptures": {
2552
+ "1": {
2553
+ "name": "punctuation.definition.tag.begin.html"
2554
+ },
2555
+ "2": {
2556
+ "name": "entity.name.tag.html"
2557
+ },
2558
+ "3": {
2559
+ "name": "invalid.illegal.no-longer-supported.html"
2560
+ }
2561
+ },
2562
+ "end": ">",
2563
+ "endCaptures": {
2564
+ "0": {
2565
+ "name": "punctuation.definition.tag.end.html"
2566
+ }
2567
+ },
2568
+ "name": "meta.tag.other.$2.end.html",
2569
+ "patterns": [
2570
+ {
2571
+ "include": "#attribute"
2572
+ }
2573
+ ]
2574
+ },
2575
+ {
2576
+ "include": "#math"
2577
+ },
2578
+ {
2579
+ "include": "#svg"
2580
+ },
2581
+ {
2582
+ "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|/?>)",
2583
+ "beginCaptures": {
2584
+ "1": {
2585
+ "name": "punctuation.definition.tag.begin.html"
2586
+ },
2587
+ "2": {
2588
+ "name": "entity.name.tag.html"
2589
+ }
2590
+ },
2591
+ "end": "/?>",
2592
+ "endCaptures": {
2593
+ "0": {
2594
+ "name": "punctuation.definition.tag.end.html"
2595
+ }
2596
+ },
2597
+ "name": "meta.tag.custom.start.html",
2598
+ "patterns": [
2599
+ {
2600
+ "include": "#attribute"
2601
+ }
2602
+ ]
2603
+ },
2604
+ {
2605
+ "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|/?>)",
2606
+ "beginCaptures": {
2607
+ "1": {
2608
+ "name": "punctuation.definition.tag.begin.html"
2609
+ },
2610
+ "2": {
2611
+ "name": "entity.name.tag.html"
2612
+ }
2613
+ },
2614
+ "end": ">",
2615
+ "endCaptures": {
2616
+ "0": {
2617
+ "name": "punctuation.definition.tag.end.html"
2618
+ }
2619
+ },
2620
+ "name": "meta.tag.custom.end.html",
2621
+ "patterns": [
2622
+ {
2623
+ "include": "#attribute"
2624
+ }
2625
+ ]
2626
+ }
2627
+ ]
2628
+ },
2629
+ "xml-processing": {
2630
+ "begin": "(<\\?)(xml)",
2631
+ "captures": {
2632
+ "1": {
2633
+ "name": "punctuation.definition.tag.html"
2634
+ },
2635
+ "2": {
2636
+ "name": "entity.name.tag.html"
2637
+ }
2638
+ },
2639
+ "end": "(\\?>)",
2640
+ "name": "meta.tag.metadata.processing.xml.html",
2641
+ "patterns": [
2642
+ {
2643
+ "include": "#attribute"
2644
+ }
2645
+ ]
2646
+ }
2647
+ },
2648
+ "scopeName": "text.html.basic",
2649
+ "uuid": "17994EC8-6B1D-11D9-AC3A-000D93589AF6"
2650
+ }