vaderjs 1.2.9 → 1.3.1

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