tm-grammars 1.7.1 → 1.8.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.
- package/NOTICE +191 -0
- package/README.md +13 -2
- package/grammars/asciidoc.json +6673 -0
- package/grammars/fluent.json +206 -0
- package/grammars/genie.json +194 -0
- package/grammars/haxe.json +2484 -0
- package/grammars/hxml.json +65 -0
- package/grammars/qml.json +436 -0
- package/grammars/qmldir.json +83 -0
- package/grammars/qss.json +285 -0
- package/grammars/soy.json +610 -0
- package/grammars/systemd.json +3 -51
- package/grammars/vala.json +196 -0
- package/grammars/wikitext.json +3619 -0
- package/index.js +263 -8
- package/package.json +1 -2
|
@@ -0,0 +1,3619 @@
|
|
|
1
|
+
{
|
|
2
|
+
"displayName": "Wikitext",
|
|
3
|
+
"name": "wikitext",
|
|
4
|
+
"patterns": [
|
|
5
|
+
{
|
|
6
|
+
"include": "#wikitext"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"include": "text.html.basic"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"repository": {
|
|
13
|
+
"wikitext": {
|
|
14
|
+
"patterns": [
|
|
15
|
+
{
|
|
16
|
+
"include": "#signature"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"include": "#redirect"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"include": "#magic-words"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"include": "#argument"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"include": "#template"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"include": "#convert"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"include": "#list"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"include": "#table"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"include": "#font-style"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"include": "#internal-link"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"include": "#external-link"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"include": "#heading"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"include": "#break"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"include": "#wikixml"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"include": "#extension-comments"
|
|
59
|
+
}
|
|
60
|
+
],
|
|
61
|
+
"repository": {
|
|
62
|
+
"argument": {
|
|
63
|
+
"begin": "({{{)",
|
|
64
|
+
"end": "(}}})",
|
|
65
|
+
"name": "variable.parameter.wikitext",
|
|
66
|
+
"patterns": [
|
|
67
|
+
{
|
|
68
|
+
"captures": {
|
|
69
|
+
"1": {
|
|
70
|
+
"name": "variable.other.wikitext"
|
|
71
|
+
},
|
|
72
|
+
"2": {
|
|
73
|
+
"name": "keyword.operator.wikitext"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"match": "(?:^|\\G)([^#:\\|\\[\\]\\{\\}\\|]*)(\\|)"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"include": "$self"
|
|
80
|
+
}
|
|
81
|
+
]
|
|
82
|
+
},
|
|
83
|
+
"break": {
|
|
84
|
+
"match": "^-{4,}",
|
|
85
|
+
"name": "markup.changed.wikitext"
|
|
86
|
+
},
|
|
87
|
+
"convert": {
|
|
88
|
+
"begin": "(-\\{(?!\\{))([a-zA-Z](\\|))?",
|
|
89
|
+
"captures": {
|
|
90
|
+
"1": {
|
|
91
|
+
"name": "punctuation.definition.tag.template.wikitext"
|
|
92
|
+
},
|
|
93
|
+
"2": {
|
|
94
|
+
"name": "entity.name.function.type.wikitext"
|
|
95
|
+
},
|
|
96
|
+
"3": {
|
|
97
|
+
"name": "keyword.operator.wikitext"
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"end": "(\\}-)",
|
|
101
|
+
"patterns": [
|
|
102
|
+
{
|
|
103
|
+
"include": "$self"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"captures": {
|
|
107
|
+
"1": {
|
|
108
|
+
"name": "entity.name.tag.language.wikitext"
|
|
109
|
+
},
|
|
110
|
+
"2": {
|
|
111
|
+
"name": "punctuation.separator.key-value.wikitext"
|
|
112
|
+
},
|
|
113
|
+
"3": {
|
|
114
|
+
"name": "string.unquoted.text.wikitext",
|
|
115
|
+
"patterns": [
|
|
116
|
+
{
|
|
117
|
+
"include": "$self"
|
|
118
|
+
}
|
|
119
|
+
]
|
|
120
|
+
},
|
|
121
|
+
"4": {
|
|
122
|
+
"name": "punctuation.terminator.rule.wikitext"
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
"match": "(?:([a-zA-Z\\-]*)(:))?(.*?)(?:(;)|(?=\\}-))"
|
|
126
|
+
}
|
|
127
|
+
]
|
|
128
|
+
},
|
|
129
|
+
"extension-comments": {
|
|
130
|
+
"begin": "(<%--)\\s*(\\[)([A-Z_]*)(\\])",
|
|
131
|
+
"beginCaptures": {
|
|
132
|
+
"1": {
|
|
133
|
+
"name": "punctuation.definition.comment.extension.wikitext"
|
|
134
|
+
},
|
|
135
|
+
"2": {
|
|
136
|
+
"name": "punctuation.definition.tag.extension.wikitext"
|
|
137
|
+
},
|
|
138
|
+
"3": {
|
|
139
|
+
"name": "storage.type.extension.wikitext"
|
|
140
|
+
},
|
|
141
|
+
"4": {
|
|
142
|
+
"name": "punctuation.definition.tag.extension.wikitext"
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
"end": "(\\[)([A-Z_]*)(\\])\\s*(--%>)",
|
|
146
|
+
"endCaptures": {
|
|
147
|
+
"1": {
|
|
148
|
+
"name": "punctuation.definition.tag.extension.wikitext"
|
|
149
|
+
},
|
|
150
|
+
"2": {
|
|
151
|
+
"name": "storage.type.extension.wikitext"
|
|
152
|
+
},
|
|
153
|
+
"3": {
|
|
154
|
+
"name": "punctuation.definition.tag.extension.wikitext"
|
|
155
|
+
},
|
|
156
|
+
"4": {
|
|
157
|
+
"name": "punctuation.definition.comment.extension.wikitext"
|
|
158
|
+
}
|
|
159
|
+
},
|
|
160
|
+
"name": "comment.block.documentation.special.extension.wikitext",
|
|
161
|
+
"patterns": [
|
|
162
|
+
{
|
|
163
|
+
"captures": {
|
|
164
|
+
"0": {
|
|
165
|
+
"name": "meta.object.member.extension.wikitext"
|
|
166
|
+
},
|
|
167
|
+
"1": {
|
|
168
|
+
"name": "meta.object-literal.key.extension.wikitext"
|
|
169
|
+
},
|
|
170
|
+
"2": {
|
|
171
|
+
"name": "punctuation.separator.dictionary.key-value.extension.wikitext"
|
|
172
|
+
},
|
|
173
|
+
"3": {
|
|
174
|
+
"name": "punctuation.definition.string.begin.extension.wikitext"
|
|
175
|
+
},
|
|
176
|
+
"4": {
|
|
177
|
+
"name": "string.quoted.other.extension.wikitext"
|
|
178
|
+
},
|
|
179
|
+
"5": {
|
|
180
|
+
"name": "punctuation.definition.string.end.extension.wikitext"
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
"match": "(\\w*)\\s*(=)\\s*(#)(.*?)(#)"
|
|
184
|
+
}
|
|
185
|
+
]
|
|
186
|
+
},
|
|
187
|
+
"external-link": {
|
|
188
|
+
"patterns": [
|
|
189
|
+
{
|
|
190
|
+
"captures": {
|
|
191
|
+
"1": {
|
|
192
|
+
"name": "punctuation.definition.tag.link.external.wikitext"
|
|
193
|
+
},
|
|
194
|
+
"2": {
|
|
195
|
+
"name": "entity.name.tag.url.wikitext"
|
|
196
|
+
},
|
|
197
|
+
"3": {
|
|
198
|
+
"name": "string.other.link.external.title.wikitext",
|
|
199
|
+
"patterns": [
|
|
200
|
+
{
|
|
201
|
+
"include": "$self"
|
|
202
|
+
}
|
|
203
|
+
]
|
|
204
|
+
},
|
|
205
|
+
"4": {
|
|
206
|
+
"name": "punctuation.definition.tag.link.external.wikitext"
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
"match": "(\\[)((?:(?:(?:http(?:s)?)|(?:ftp(?:s)?)):\\/\\/)[\\w.-]+(?:\\.[\\w\\.-]+)+[\\w\\-\\.~:\\/?#%@!\\$&'\\(\\)\\*\\+,;=.]+)\\s*?([^\\]]*)(\\])",
|
|
210
|
+
"name": "meta.link.external.wikitext"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"captures": {
|
|
214
|
+
"1": {
|
|
215
|
+
"name": "punctuation.definition.tag.link.external.wikitext"
|
|
216
|
+
},
|
|
217
|
+
"2": {
|
|
218
|
+
"name": "invalid.illegal.bad-url.wikitext"
|
|
219
|
+
},
|
|
220
|
+
"3": {
|
|
221
|
+
"name": "string.other.link.external.title.wikitext",
|
|
222
|
+
"patterns": [
|
|
223
|
+
{
|
|
224
|
+
"include": "$self"
|
|
225
|
+
}
|
|
226
|
+
]
|
|
227
|
+
},
|
|
228
|
+
"4": {
|
|
229
|
+
"name": "punctuation.definition.tag.link.external.wikitext"
|
|
230
|
+
}
|
|
231
|
+
},
|
|
232
|
+
"match": "(\\[)([\\w.-]+(?:\\.[\\w\\.-]+)+[\\w\\-\\.~:\\/?#%@!\\$&'\\(\\)\\*\\+,;=.]+)\\s*?([^\\]]*)(\\])",
|
|
233
|
+
"name": "invalid.illegal.bad-link.wikitext"
|
|
234
|
+
}
|
|
235
|
+
]
|
|
236
|
+
},
|
|
237
|
+
"font-style": {
|
|
238
|
+
"patterns": [
|
|
239
|
+
{
|
|
240
|
+
"include": "#bold"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"include": "#italic"
|
|
244
|
+
}
|
|
245
|
+
],
|
|
246
|
+
"repository": {
|
|
247
|
+
"bold": {
|
|
248
|
+
"begin": "(''')",
|
|
249
|
+
"end": "(''')|$",
|
|
250
|
+
"name": "markup.bold.wikitext",
|
|
251
|
+
"patterns": [
|
|
252
|
+
{
|
|
253
|
+
"include": "#italic"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"include": "$self"
|
|
257
|
+
}
|
|
258
|
+
]
|
|
259
|
+
},
|
|
260
|
+
"italic": {
|
|
261
|
+
"begin": "('')",
|
|
262
|
+
"end": "((?=[^'])|(?=''))''((?=[^'])|(?=''))|$",
|
|
263
|
+
"name": "markup.italic.wikitext",
|
|
264
|
+
"patterns": [
|
|
265
|
+
{
|
|
266
|
+
"include": "#bold"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"include": "$self"
|
|
270
|
+
}
|
|
271
|
+
]
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
},
|
|
275
|
+
"heading": {
|
|
276
|
+
"captures": {
|
|
277
|
+
"2": {
|
|
278
|
+
"name": "string.quoted.other.heading.wikitext",
|
|
279
|
+
"patterns": [
|
|
280
|
+
{
|
|
281
|
+
"include": "$self"
|
|
282
|
+
}
|
|
283
|
+
]
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
"match": "^(={1,6})\\s*(.+?)\\s*(\\1)$",
|
|
287
|
+
"name": "markup.heading.wikitext"
|
|
288
|
+
},
|
|
289
|
+
"internal-link": {
|
|
290
|
+
"TODO": "SINGLE LINE",
|
|
291
|
+
"begin": "(\\[\\[)(([^#:\\|\\[\\]\\{\\}]*:)*)?([^\\|\\[\\]]*)?",
|
|
292
|
+
"captures": {
|
|
293
|
+
"1": {
|
|
294
|
+
"name": "punctuation.definition.tag.link.internal.wikitext"
|
|
295
|
+
},
|
|
296
|
+
"2": {
|
|
297
|
+
"name": "entity.name.tag.namespace.wikitext"
|
|
298
|
+
},
|
|
299
|
+
"4": {
|
|
300
|
+
"name": "entity.other.attribute-name.wikitext"
|
|
301
|
+
}
|
|
302
|
+
},
|
|
303
|
+
"end": "(\\]\\])",
|
|
304
|
+
"name": "string.quoted.internal-link.wikitext",
|
|
305
|
+
"patterns": [
|
|
306
|
+
{
|
|
307
|
+
"include": "$self"
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"captures": {
|
|
311
|
+
"1": {
|
|
312
|
+
"name": "keyword.operator.wikitext"
|
|
313
|
+
},
|
|
314
|
+
"5": {
|
|
315
|
+
"name": "entity.other.attribute-name.localname.wikitext"
|
|
316
|
+
}
|
|
317
|
+
},
|
|
318
|
+
"match": "(\\|)|(?:\\s*)(?:([-\\w.]+)((:)))?([-\\w.:]+)\\s*(=)"
|
|
319
|
+
}
|
|
320
|
+
]
|
|
321
|
+
},
|
|
322
|
+
"list": {
|
|
323
|
+
"name": "markup.list.wikitext",
|
|
324
|
+
"patterns": [
|
|
325
|
+
{
|
|
326
|
+
"captures": {
|
|
327
|
+
"1": {
|
|
328
|
+
"name": "punctuation.definition.list.begin.markdown.wikitext"
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
"match": "^([#*;:]+)"
|
|
332
|
+
}
|
|
333
|
+
]
|
|
334
|
+
},
|
|
335
|
+
"magic-words": {
|
|
336
|
+
"patterns": [
|
|
337
|
+
{
|
|
338
|
+
"include": "#behavior-switches"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"include": "#outdated-behavior-switches"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"include": "#variables"
|
|
345
|
+
}
|
|
346
|
+
],
|
|
347
|
+
"repository": {
|
|
348
|
+
"behavior-switches": {
|
|
349
|
+
"match": "(?x) # turn on extended mode\n(?i) # ignore case\n (__) # start: __\n (\n NOTOC|FORCETOC|TOC|NOEDITSECTION|NEWSECTIONLINK|NOGALLERY|\n HIDDENCAT|EXPECTUNUSEDCATEGORY|NOCONTENTCONVERT|NOCC|\n NOTITLECONVERT|NOTC|INDEX|NOINDEX|STATICREDIRECT|NOGLOBAL|\n DISAMBIG\n )\n (__)",
|
|
350
|
+
"name": "constant.language.behavior-switcher.wikitext"
|
|
351
|
+
},
|
|
352
|
+
"outdated-behavior-switches": {
|
|
353
|
+
"match": "(?x)\n(?i)\n (__)\n (\n START|END\n )\n (__)",
|
|
354
|
+
"name": "invalid.deprecated.behavior-switcher.wikitext"
|
|
355
|
+
},
|
|
356
|
+
"variables": {
|
|
357
|
+
"patterns": [
|
|
358
|
+
{
|
|
359
|
+
"match": "(?x)\n(?i)\n (\\{\\{)\n (\n CURRENTYEAR|CURRENTMONTH|CURRENTMONTH1|CURRENTMONTHNAME|\n CURRENTMONTHNAMEGEN|CURRENTMONTHABBREV|CURRENTDAY|\n CURRENTDAY2|CURRENTDOW|CURRENTDAYNAME|CURRENTTIME|\n CURRENTHOUR|CURRENTWEEK|CURRENTTIMESTAMP|LOCALYEAR|\n LOCALMONTH|LOCALMONTH1|LOCALMONTHNAME|LOCALMONTHNAMEGEN|\n LOCALMONTHABBREV|LOCALDAY|LOCALDAY2|LOCALDOW|\n LOCALDAYNAME|LOCALTIME|LOCALHOUR|LOCALWEEK|\n LOCALTIMESTAMP\n )\n (\\}\\})",
|
|
360
|
+
"name": "constant.language.variables.time.wikitext"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"match": "(?x)\n(?i)\n (\\{\\{)\n (\n SITENAME|SERVER|SERVERNAME|DIRMARK|DIRECTIONMARK|\n SCRIPTPATH|STYLEPATH|CURRENTVERSION|CONTENTLANGUAGE|\n CONTENTLANG|PAGEID|PAGELANGUAGE|CASCADINGSOURCES|\n REVISIONID|REVISIONDAY|REVISIONDAY2|REVISIONMONTH|\n REVISIONMONTH1|REVISIONYEAR|REVISIONTIMESTAMP|\n REVISIONUSER|REVISIONSIZE\n )\n (\\}\\})",
|
|
364
|
+
"name": "constant.language.variables.metadata.wikitext"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"match": "ISBN\\s+((9[\\-\\s]?7[\\-\\s]?[89][\\-\\s]?)?([0-9][\\-\\s]?){10})",
|
|
368
|
+
"name": "constant.language.variables.isbn.wikitext"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"match": "RFC\\s+[0-9]+",
|
|
372
|
+
"name": "constant.language.variables.rfc.wikitext"
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"match": "PMID\\s+[0-9]+",
|
|
376
|
+
"name": "constant.language.variables.pmid.wikitext"
|
|
377
|
+
}
|
|
378
|
+
]
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
},
|
|
382
|
+
"redirect": {
|
|
383
|
+
"patterns": [
|
|
384
|
+
{
|
|
385
|
+
"captures": {
|
|
386
|
+
"1": {
|
|
387
|
+
"name": "keyword.control.redirect.wikitext"
|
|
388
|
+
},
|
|
389
|
+
"2": {
|
|
390
|
+
"name": "punctuation.definition.tag.link.internal.begin.wikitext"
|
|
391
|
+
},
|
|
392
|
+
"3": {
|
|
393
|
+
"name": "entity.name.tag.namespace.wikitext"
|
|
394
|
+
},
|
|
395
|
+
"4": null,
|
|
396
|
+
"5": {
|
|
397
|
+
"name": "entity.other.attribute-name.wikitext"
|
|
398
|
+
},
|
|
399
|
+
"6": {
|
|
400
|
+
"name": "invalid.deprecated.ineffective.wikitext"
|
|
401
|
+
},
|
|
402
|
+
"7": {
|
|
403
|
+
"name": "punctuation.definition.tag.link.internal.end.wikitext"
|
|
404
|
+
}
|
|
405
|
+
},
|
|
406
|
+
"match": "(?i)(^\\s*?#REDIRECT)\\s*(\\[\\[)(([^#:\\|\\[\\]\\{\\}]*?:)*)?([^\\|\\[\\]]*)?(\\|[^\\[\\]]*?)?(\\]\\])"
|
|
407
|
+
}
|
|
408
|
+
]
|
|
409
|
+
},
|
|
410
|
+
"signature": {
|
|
411
|
+
"patterns": [
|
|
412
|
+
{
|
|
413
|
+
"match": "~{3,5}",
|
|
414
|
+
"name": "keyword.other.signature.wikitext"
|
|
415
|
+
}
|
|
416
|
+
]
|
|
417
|
+
},
|
|
418
|
+
"table": {
|
|
419
|
+
"patterns": [
|
|
420
|
+
{
|
|
421
|
+
"begin": "^\\s*(\\{\\|)(.*)$",
|
|
422
|
+
"captures": {
|
|
423
|
+
"1": {
|
|
424
|
+
"name": "punctuation.definition.tag.table.wikitext"
|
|
425
|
+
},
|
|
426
|
+
"2": {
|
|
427
|
+
"patterns": [
|
|
428
|
+
{
|
|
429
|
+
"include": "text.html.basic#attribute"
|
|
430
|
+
}
|
|
431
|
+
]
|
|
432
|
+
}
|
|
433
|
+
},
|
|
434
|
+
"end": "^\\s*(\\|\\})",
|
|
435
|
+
"name": "meta.tag.block.table.wikitext",
|
|
436
|
+
"patterns": [
|
|
437
|
+
{
|
|
438
|
+
"include": "$self"
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"begin": "^\\s*(\\|-)\\s*",
|
|
442
|
+
"beginCaptures": {
|
|
443
|
+
"1": {
|
|
444
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
445
|
+
}
|
|
446
|
+
},
|
|
447
|
+
"end": "$",
|
|
448
|
+
"name": "meta.tag.block.table-row.wikitext",
|
|
449
|
+
"patterns": [
|
|
450
|
+
{
|
|
451
|
+
"include": "$self"
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
"include": "text.html.basic#attribute"
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"match": "\\|.*",
|
|
458
|
+
"name": "invalid.illegal.bad-table-context.wikitext"
|
|
459
|
+
}
|
|
460
|
+
]
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"begin": "^\\s*(!)(([^\\[]*?)(\\|))?(.*?)(?=(!!)|$)",
|
|
464
|
+
"beginCaptures": {
|
|
465
|
+
"1": {
|
|
466
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
467
|
+
},
|
|
468
|
+
"2": null,
|
|
469
|
+
"3": {
|
|
470
|
+
"patterns": [
|
|
471
|
+
{
|
|
472
|
+
"include": "$self"
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
"include": "text.html.basic#attribute"
|
|
476
|
+
}
|
|
477
|
+
]
|
|
478
|
+
},
|
|
479
|
+
"4": {
|
|
480
|
+
"name": "punctuation.definition.tag.wikitext"
|
|
481
|
+
},
|
|
482
|
+
"5": {
|
|
483
|
+
"name": "markup.bold.style.wikitext"
|
|
484
|
+
}
|
|
485
|
+
},
|
|
486
|
+
"end": "$",
|
|
487
|
+
"name": "meta.tag.block.th.heading",
|
|
488
|
+
"patterns": [
|
|
489
|
+
{
|
|
490
|
+
"captures": {
|
|
491
|
+
"1": {
|
|
492
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
493
|
+
},
|
|
494
|
+
"3": {
|
|
495
|
+
"patterns": [
|
|
496
|
+
{
|
|
497
|
+
"include": "text.html.basic#attribute"
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"include": "$self"
|
|
501
|
+
}
|
|
502
|
+
]
|
|
503
|
+
},
|
|
504
|
+
"4": {
|
|
505
|
+
"name": "punctuation.definition.tag.wikitext"
|
|
506
|
+
},
|
|
507
|
+
"5": {
|
|
508
|
+
"name": "markup.bold.style.wikitext"
|
|
509
|
+
}
|
|
510
|
+
},
|
|
511
|
+
"match": "(!!)(([^\\[]*?)(\\|))?(.*?)(?=(!!)|$)",
|
|
512
|
+
"name": "meta.tag.block.th.inline.wikitext"
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"include": "$self"
|
|
516
|
+
}
|
|
517
|
+
]
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"captures": {
|
|
521
|
+
"1": {
|
|
522
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
523
|
+
},
|
|
524
|
+
"2": {
|
|
525
|
+
"name": "string.unquoted.caption.wikitext"
|
|
526
|
+
}
|
|
527
|
+
},
|
|
528
|
+
"end": "$",
|
|
529
|
+
"match": "^\\s*(\\|\\+)(.*?)$",
|
|
530
|
+
"name": "meta.tag.block.caption.wikitext",
|
|
531
|
+
"patterns": [
|
|
532
|
+
{
|
|
533
|
+
"include": "$self"
|
|
534
|
+
}
|
|
535
|
+
]
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
"begin": "^\\s*(\\|)",
|
|
539
|
+
"beginCaptures": {
|
|
540
|
+
"1": {
|
|
541
|
+
"name": "punctuation.definition.tag.wikitext"
|
|
542
|
+
}
|
|
543
|
+
},
|
|
544
|
+
"end": "$",
|
|
545
|
+
"patterns": [
|
|
546
|
+
{
|
|
547
|
+
"include": "$self"
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
"match": "\\|\\|",
|
|
551
|
+
"name": "keyword.operator.wikitext"
|
|
552
|
+
}
|
|
553
|
+
]
|
|
554
|
+
}
|
|
555
|
+
]
|
|
556
|
+
}
|
|
557
|
+
]
|
|
558
|
+
},
|
|
559
|
+
"template": {
|
|
560
|
+
"begin": "(\\{\\{)\\s*(([^#:\\|\\[\\]\\{\\}]*(:))*)\\s*((#[^#:\\|\\[\\]\\{\\}]+(:))*)([^#:\\|\\[\\]\\{\\}]*)",
|
|
561
|
+
"captures": {
|
|
562
|
+
"1": {
|
|
563
|
+
"name": "punctuation.definition.tag.template.wikitext"
|
|
564
|
+
},
|
|
565
|
+
"2": {
|
|
566
|
+
"name": "entity.name.tag.local-name.wikitext"
|
|
567
|
+
},
|
|
568
|
+
"4": {
|
|
569
|
+
"name": "punctuation.separator.namespace.wikitext"
|
|
570
|
+
},
|
|
571
|
+
"5": {
|
|
572
|
+
"name": "entity.name.function.wikitext"
|
|
573
|
+
},
|
|
574
|
+
"7": {
|
|
575
|
+
"name": "punctuation.separator.namespace.wikitext"
|
|
576
|
+
},
|
|
577
|
+
"8": {
|
|
578
|
+
"name": "entity.name.tag.local-name.wikitext"
|
|
579
|
+
}
|
|
580
|
+
},
|
|
581
|
+
"end": "(\\}\\})",
|
|
582
|
+
"patterns": [
|
|
583
|
+
{
|
|
584
|
+
"include": "$self"
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
"match": "(\\|)",
|
|
588
|
+
"name": "keyword.operator.wikitext"
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"captures": {
|
|
592
|
+
"1": {
|
|
593
|
+
"name": "entity.other.attribute-name.namespace.wikitext"
|
|
594
|
+
},
|
|
595
|
+
"2": {
|
|
596
|
+
"name": "punctuation.separator.namespace.wikitext"
|
|
597
|
+
},
|
|
598
|
+
"3": {
|
|
599
|
+
"name": "entity.other.attribute-name.local-name.wikitext"
|
|
600
|
+
},
|
|
601
|
+
"4": {
|
|
602
|
+
"name": "keyword.operator.equal.wikitext"
|
|
603
|
+
}
|
|
604
|
+
},
|
|
605
|
+
"match": "(?<=\\|)\\s*(?:([-\\w.]+)(:))?([-\\w\\s\\.:]+)\\s*(=)"
|
|
606
|
+
}
|
|
607
|
+
]
|
|
608
|
+
},
|
|
609
|
+
"wikixml": {
|
|
610
|
+
"patterns": [
|
|
611
|
+
{
|
|
612
|
+
"include": "#wiki-self-closed-tags"
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
"include": "#normal-wiki-tags"
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
"include": "#nowiki"
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
"include": "#ref"
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"include": "#jsonin"
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
"include": "#math"
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
"include": "#syntax-highlight"
|
|
631
|
+
}
|
|
632
|
+
],
|
|
633
|
+
"repository": {
|
|
634
|
+
"jsonin": {
|
|
635
|
+
"begin": "(?i)(<)(graph|templatedata)(\\s+[^>]+)?\\s*(>)",
|
|
636
|
+
"beginCaptures": {
|
|
637
|
+
"0": {
|
|
638
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
639
|
+
},
|
|
640
|
+
"1": {
|
|
641
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
642
|
+
},
|
|
643
|
+
"2": {
|
|
644
|
+
"name": "entity.name.tag.wikitext"
|
|
645
|
+
},
|
|
646
|
+
"3": {
|
|
647
|
+
"patterns": [
|
|
648
|
+
{
|
|
649
|
+
"include": "text.html.basic#attribute"
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
"include": "$self"
|
|
653
|
+
}
|
|
654
|
+
]
|
|
655
|
+
},
|
|
656
|
+
"4": {
|
|
657
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
658
|
+
}
|
|
659
|
+
},
|
|
660
|
+
"contentName": "meta.embedded.block.json",
|
|
661
|
+
"end": "(?i)(</)(\\2)\\s*(>)",
|
|
662
|
+
"endCaptures": {
|
|
663
|
+
"0": {
|
|
664
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
665
|
+
},
|
|
666
|
+
"1": {
|
|
667
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
668
|
+
},
|
|
669
|
+
"2": {
|
|
670
|
+
"name": "entity.name.tag.wikitext"
|
|
671
|
+
},
|
|
672
|
+
"3": {
|
|
673
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
674
|
+
}
|
|
675
|
+
},
|
|
676
|
+
"patterns": [
|
|
677
|
+
{
|
|
678
|
+
"include": "source.json"
|
|
679
|
+
}
|
|
680
|
+
]
|
|
681
|
+
},
|
|
682
|
+
"math": {
|
|
683
|
+
"begin": "(?i)(<)(math|chem|ce)(\\s+[^>]+)?\\s*(>)",
|
|
684
|
+
"beginCaptures": {
|
|
685
|
+
"0": {
|
|
686
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
687
|
+
},
|
|
688
|
+
"1": {
|
|
689
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
690
|
+
},
|
|
691
|
+
"2": {
|
|
692
|
+
"name": "entity.name.tag.wikitext"
|
|
693
|
+
},
|
|
694
|
+
"3": {
|
|
695
|
+
"patterns": [
|
|
696
|
+
{
|
|
697
|
+
"include": "text.html.basic#attribute"
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"include": "$self"
|
|
701
|
+
}
|
|
702
|
+
]
|
|
703
|
+
},
|
|
704
|
+
"4": {
|
|
705
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
706
|
+
}
|
|
707
|
+
},
|
|
708
|
+
"contentName": "meta.embedded.block.latex",
|
|
709
|
+
"end": "(?i)(</)(\\2)\\s*(>)",
|
|
710
|
+
"endCaptures": {
|
|
711
|
+
"0": {
|
|
712
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
713
|
+
},
|
|
714
|
+
"1": {
|
|
715
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
716
|
+
},
|
|
717
|
+
"2": {
|
|
718
|
+
"name": "entity.name.tag.wikitext"
|
|
719
|
+
},
|
|
720
|
+
"3": {
|
|
721
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
722
|
+
}
|
|
723
|
+
},
|
|
724
|
+
"patterns": [
|
|
725
|
+
{
|
|
726
|
+
"include": "text.html.markdown.math#math"
|
|
727
|
+
}
|
|
728
|
+
]
|
|
729
|
+
},
|
|
730
|
+
"normal-wiki-tags": {
|
|
731
|
+
"captures": {
|
|
732
|
+
"1": {
|
|
733
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
734
|
+
},
|
|
735
|
+
"2": {
|
|
736
|
+
"name": "entity.name.tag.wikitext"
|
|
737
|
+
},
|
|
738
|
+
"3": {
|
|
739
|
+
"patterns": [
|
|
740
|
+
{
|
|
741
|
+
"include": "text.html.basic#attribute"
|
|
742
|
+
},
|
|
743
|
+
{
|
|
744
|
+
"include": "$self"
|
|
745
|
+
}
|
|
746
|
+
]
|
|
747
|
+
},
|
|
748
|
+
"4": {
|
|
749
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
750
|
+
}
|
|
751
|
+
},
|
|
752
|
+
"match": "(?i)(</?)(includeonly|onlyinclude|noinclude)(\\s+[^>]+)?\\s*(>)",
|
|
753
|
+
"name": "meta.tag.metedata.normal.wikitext"
|
|
754
|
+
},
|
|
755
|
+
"nowiki": {
|
|
756
|
+
"begin": "(?i)(<)(nowiki)(\\s+[^>]+)?\\s*(>)",
|
|
757
|
+
"beginCaptures": {
|
|
758
|
+
"0": {
|
|
759
|
+
"name": "meta.tag.metadata.nowiki.start.wikitext"
|
|
760
|
+
},
|
|
761
|
+
"1": {
|
|
762
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
763
|
+
},
|
|
764
|
+
"2": {
|
|
765
|
+
"name": "entity.name.tag.wikitext"
|
|
766
|
+
},
|
|
767
|
+
"3": {
|
|
768
|
+
"patterns": [
|
|
769
|
+
{
|
|
770
|
+
"include": "text.html.basic#attribute"
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"include": "$self"
|
|
774
|
+
}
|
|
775
|
+
]
|
|
776
|
+
},
|
|
777
|
+
"4": {
|
|
778
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
779
|
+
}
|
|
780
|
+
},
|
|
781
|
+
"contentName": "meta.embedded.block.plaintext",
|
|
782
|
+
"end": "(?i)(</)(nowiki)\\s*(>)",
|
|
783
|
+
"endCaptures": {
|
|
784
|
+
"0": {
|
|
785
|
+
"name": "meta.tag.metadata.nowiki.end.wikitext"
|
|
786
|
+
},
|
|
787
|
+
"1": {
|
|
788
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
789
|
+
},
|
|
790
|
+
"2": {
|
|
791
|
+
"name": "entity.name.tag.wikitext"
|
|
792
|
+
},
|
|
793
|
+
"3": {
|
|
794
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
795
|
+
}
|
|
796
|
+
}
|
|
797
|
+
},
|
|
798
|
+
"ref": {
|
|
799
|
+
"begin": "(?i)(<)(ref)(\\s+[^>]+)?\\s*(>)",
|
|
800
|
+
"beginCaptures": {
|
|
801
|
+
"0": {
|
|
802
|
+
"name": "meta.tag.metadata.ref.start.wikitext"
|
|
803
|
+
},
|
|
804
|
+
"1": {
|
|
805
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
806
|
+
},
|
|
807
|
+
"2": {
|
|
808
|
+
"name": "entity.name.tag.wikitext"
|
|
809
|
+
},
|
|
810
|
+
"3": {
|
|
811
|
+
"patterns": [
|
|
812
|
+
{
|
|
813
|
+
"include": "text.html.basic#attribute"
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
"include": "$self"
|
|
817
|
+
}
|
|
818
|
+
]
|
|
819
|
+
},
|
|
820
|
+
"4": {
|
|
821
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
822
|
+
}
|
|
823
|
+
},
|
|
824
|
+
"contentName": "meta.block.ref.wikitext",
|
|
825
|
+
"end": "(?i)(</)(ref)\\s*(>)",
|
|
826
|
+
"endCaptures": {
|
|
827
|
+
"0": {
|
|
828
|
+
"name": "meta.tag.metadata.ref.end.wikitext"
|
|
829
|
+
},
|
|
830
|
+
"1": {
|
|
831
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
832
|
+
},
|
|
833
|
+
"2": {
|
|
834
|
+
"name": "entity.name.tag.wikitext"
|
|
835
|
+
},
|
|
836
|
+
"3": {
|
|
837
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
838
|
+
}
|
|
839
|
+
},
|
|
840
|
+
"patterns": [
|
|
841
|
+
{
|
|
842
|
+
"include": "$self"
|
|
843
|
+
}
|
|
844
|
+
]
|
|
845
|
+
},
|
|
846
|
+
"syntax-highlight": {
|
|
847
|
+
"patterns": [
|
|
848
|
+
{
|
|
849
|
+
"include": "#hl-css"
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"include": "#hl-html"
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
"include": "#hl-ini"
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
"include": "#hl-java"
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"include": "#hl-lua"
|
|
862
|
+
},
|
|
863
|
+
{
|
|
864
|
+
"include": "#hl-makefile"
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
"include": "#hl-perl"
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
"include": "#hl-r"
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
"include": "#hl-ruby"
|
|
874
|
+
},
|
|
875
|
+
{
|
|
876
|
+
"include": "#hl-php"
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
"include": "#hl-sql"
|
|
880
|
+
},
|
|
881
|
+
{
|
|
882
|
+
"include": "#hl-vb-net"
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
"include": "#hl-xml"
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
"include": "#hl-xslt"
|
|
889
|
+
},
|
|
890
|
+
{
|
|
891
|
+
"include": "#hl-yaml"
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
"include": "#hl-bat"
|
|
895
|
+
},
|
|
896
|
+
{
|
|
897
|
+
"include": "#hl-clojure"
|
|
898
|
+
},
|
|
899
|
+
{
|
|
900
|
+
"include": "#hl-coffee"
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
"include": "#hl-c"
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
"include": "#hl-cpp"
|
|
907
|
+
},
|
|
908
|
+
{
|
|
909
|
+
"include": "#hl-diff"
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
"include": "#hl-dockerfile"
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
"include": "#hl-go"
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
"include": "#hl-groovy"
|
|
919
|
+
},
|
|
920
|
+
{
|
|
921
|
+
"include": "#hl-pug"
|
|
922
|
+
},
|
|
923
|
+
{
|
|
924
|
+
"include": "#hl-js"
|
|
925
|
+
},
|
|
926
|
+
{
|
|
927
|
+
"include": "#hl-json"
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
"include": "#hl-less"
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
"include": "#hl-objc"
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
"include": "#hl-swift"
|
|
937
|
+
},
|
|
938
|
+
{
|
|
939
|
+
"include": "#hl-scss"
|
|
940
|
+
},
|
|
941
|
+
{
|
|
942
|
+
"include": "#hl-perl6"
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
"include": "#hl-powershell"
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
"include": "#hl-python"
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
"include": "#hl-julia"
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
"include": "#hl-rust"
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
"include": "#hl-scala"
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
"include": "#hl-shell"
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
"include": "#hl-ts"
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
"include": "#hl-csharp"
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
"include": "#hl-fsharp"
|
|
970
|
+
},
|
|
971
|
+
{
|
|
972
|
+
"include": "#hl-dart"
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
"include": "#hl-handlebars"
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
"include": "#hl-markdown"
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
"include": "#hl-erlang"
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
"include": "#hl-elixir"
|
|
985
|
+
},
|
|
986
|
+
{
|
|
987
|
+
"include": "#hl-latex"
|
|
988
|
+
},
|
|
989
|
+
{
|
|
990
|
+
"include": "#hl-bibtex"
|
|
991
|
+
}
|
|
992
|
+
],
|
|
993
|
+
"repository": {
|
|
994
|
+
"hl-bat": {
|
|
995
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)(['\"]?)(?:batch|bat|dosbatch|winbatch)\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
996
|
+
"beginCaptures": {
|
|
997
|
+
"0": {
|
|
998
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
999
|
+
},
|
|
1000
|
+
"1": {
|
|
1001
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1002
|
+
},
|
|
1003
|
+
"2": {
|
|
1004
|
+
"name": "entity.name.tag.wikitext"
|
|
1005
|
+
},
|
|
1006
|
+
"3": {
|
|
1007
|
+
"patterns": [
|
|
1008
|
+
{
|
|
1009
|
+
"include": "text.html.basic#attribute"
|
|
1010
|
+
},
|
|
1011
|
+
{
|
|
1012
|
+
"include": "$self"
|
|
1013
|
+
}
|
|
1014
|
+
]
|
|
1015
|
+
},
|
|
1016
|
+
"5": {
|
|
1017
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1018
|
+
}
|
|
1019
|
+
},
|
|
1020
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
1021
|
+
"endCaptures": {
|
|
1022
|
+
"0": {
|
|
1023
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
1024
|
+
},
|
|
1025
|
+
"1": {
|
|
1026
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1027
|
+
},
|
|
1028
|
+
"2": {
|
|
1029
|
+
"name": "entity.name.tag.wikitext"
|
|
1030
|
+
},
|
|
1031
|
+
"3": {
|
|
1032
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1033
|
+
}
|
|
1034
|
+
},
|
|
1035
|
+
"patterns": [
|
|
1036
|
+
{
|
|
1037
|
+
"begin": "(^|\\G)",
|
|
1038
|
+
"contentName": "meta.embedded.block.bat",
|
|
1039
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
1040
|
+
"patterns": [
|
|
1041
|
+
{
|
|
1042
|
+
"include": "source.batchfile"
|
|
1043
|
+
}
|
|
1044
|
+
]
|
|
1045
|
+
}
|
|
1046
|
+
]
|
|
1047
|
+
},
|
|
1048
|
+
"hl-bibtex": {
|
|
1049
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)(?:bibtex|bib)\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
1050
|
+
"beginCaptures": {
|
|
1051
|
+
"0": {
|
|
1052
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
1053
|
+
},
|
|
1054
|
+
"1": {
|
|
1055
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1056
|
+
},
|
|
1057
|
+
"2": {
|
|
1058
|
+
"name": "entity.name.tag.wikitext"
|
|
1059
|
+
},
|
|
1060
|
+
"3": {
|
|
1061
|
+
"patterns": [
|
|
1062
|
+
{
|
|
1063
|
+
"include": "text.html.basic#attribute"
|
|
1064
|
+
},
|
|
1065
|
+
{
|
|
1066
|
+
"include": "$self"
|
|
1067
|
+
}
|
|
1068
|
+
]
|
|
1069
|
+
},
|
|
1070
|
+
"5": {
|
|
1071
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1072
|
+
}
|
|
1073
|
+
},
|
|
1074
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
1075
|
+
"endCaptures": {
|
|
1076
|
+
"0": {
|
|
1077
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
1078
|
+
},
|
|
1079
|
+
"1": {
|
|
1080
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1081
|
+
},
|
|
1082
|
+
"2": {
|
|
1083
|
+
"name": "entity.name.tag.wikitext"
|
|
1084
|
+
},
|
|
1085
|
+
"3": {
|
|
1086
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1087
|
+
}
|
|
1088
|
+
},
|
|
1089
|
+
"patterns": [
|
|
1090
|
+
{
|
|
1091
|
+
"begin": "(^|\\G)",
|
|
1092
|
+
"contentName": "meta.embedded.block.bibtex",
|
|
1093
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
1094
|
+
"patterns": [
|
|
1095
|
+
{
|
|
1096
|
+
"include": "text.bibtex"
|
|
1097
|
+
}
|
|
1098
|
+
]
|
|
1099
|
+
}
|
|
1100
|
+
]
|
|
1101
|
+
},
|
|
1102
|
+
"hl-c": {
|
|
1103
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)c\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
1104
|
+
"beginCaptures": {
|
|
1105
|
+
"0": {
|
|
1106
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
1107
|
+
},
|
|
1108
|
+
"1": {
|
|
1109
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1110
|
+
},
|
|
1111
|
+
"2": {
|
|
1112
|
+
"name": "entity.name.tag.wikitext"
|
|
1113
|
+
},
|
|
1114
|
+
"3": {
|
|
1115
|
+
"patterns": [
|
|
1116
|
+
{
|
|
1117
|
+
"include": "text.html.basic#attribute"
|
|
1118
|
+
},
|
|
1119
|
+
{
|
|
1120
|
+
"include": "$self"
|
|
1121
|
+
}
|
|
1122
|
+
]
|
|
1123
|
+
},
|
|
1124
|
+
"5": {
|
|
1125
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1126
|
+
}
|
|
1127
|
+
},
|
|
1128
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
1129
|
+
"endCaptures": {
|
|
1130
|
+
"0": {
|
|
1131
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
1132
|
+
},
|
|
1133
|
+
"1": {
|
|
1134
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1135
|
+
},
|
|
1136
|
+
"2": {
|
|
1137
|
+
"name": "entity.name.tag.wikitext"
|
|
1138
|
+
},
|
|
1139
|
+
"3": {
|
|
1140
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1141
|
+
}
|
|
1142
|
+
},
|
|
1143
|
+
"patterns": [
|
|
1144
|
+
{
|
|
1145
|
+
"begin": "(^|\\G)",
|
|
1146
|
+
"contentName": "meta.embedded.block.c",
|
|
1147
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
1148
|
+
"patterns": [
|
|
1149
|
+
{
|
|
1150
|
+
"include": "source.c"
|
|
1151
|
+
}
|
|
1152
|
+
]
|
|
1153
|
+
}
|
|
1154
|
+
]
|
|
1155
|
+
},
|
|
1156
|
+
"hl-clojure": {
|
|
1157
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)(?:clojure|clj)\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
1158
|
+
"beginCaptures": {
|
|
1159
|
+
"0": {
|
|
1160
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
1161
|
+
},
|
|
1162
|
+
"1": {
|
|
1163
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1164
|
+
},
|
|
1165
|
+
"2": {
|
|
1166
|
+
"name": "entity.name.tag.wikitext"
|
|
1167
|
+
},
|
|
1168
|
+
"3": {
|
|
1169
|
+
"patterns": [
|
|
1170
|
+
{
|
|
1171
|
+
"include": "text.html.basic#attribute"
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
"include": "$self"
|
|
1175
|
+
}
|
|
1176
|
+
]
|
|
1177
|
+
},
|
|
1178
|
+
"5": {
|
|
1179
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1180
|
+
}
|
|
1181
|
+
},
|
|
1182
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
1183
|
+
"endCaptures": {
|
|
1184
|
+
"0": {
|
|
1185
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
1186
|
+
},
|
|
1187
|
+
"1": {
|
|
1188
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1189
|
+
},
|
|
1190
|
+
"2": {
|
|
1191
|
+
"name": "entity.name.tag.wikitext"
|
|
1192
|
+
},
|
|
1193
|
+
"3": {
|
|
1194
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1195
|
+
}
|
|
1196
|
+
},
|
|
1197
|
+
"patterns": [
|
|
1198
|
+
{
|
|
1199
|
+
"begin": "(^|\\G)",
|
|
1200
|
+
"contentName": "meta.embedded.block.clojure",
|
|
1201
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
1202
|
+
"patterns": [
|
|
1203
|
+
{
|
|
1204
|
+
"include": "source.clojure"
|
|
1205
|
+
}
|
|
1206
|
+
]
|
|
1207
|
+
}
|
|
1208
|
+
]
|
|
1209
|
+
},
|
|
1210
|
+
"hl-coffee": {
|
|
1211
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)(?:coffeescript|coffee-script|coffee)\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
1212
|
+
"beginCaptures": {
|
|
1213
|
+
"0": {
|
|
1214
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
1215
|
+
},
|
|
1216
|
+
"1": {
|
|
1217
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1218
|
+
},
|
|
1219
|
+
"2": {
|
|
1220
|
+
"name": "entity.name.tag.wikitext"
|
|
1221
|
+
},
|
|
1222
|
+
"3": {
|
|
1223
|
+
"patterns": [
|
|
1224
|
+
{
|
|
1225
|
+
"include": "text.html.basic#attribute"
|
|
1226
|
+
},
|
|
1227
|
+
{
|
|
1228
|
+
"include": "$self"
|
|
1229
|
+
}
|
|
1230
|
+
]
|
|
1231
|
+
},
|
|
1232
|
+
"5": {
|
|
1233
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1234
|
+
}
|
|
1235
|
+
},
|
|
1236
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
1237
|
+
"endCaptures": {
|
|
1238
|
+
"0": {
|
|
1239
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
1240
|
+
},
|
|
1241
|
+
"1": {
|
|
1242
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1243
|
+
},
|
|
1244
|
+
"2": {
|
|
1245
|
+
"name": "entity.name.tag.wikitext"
|
|
1246
|
+
},
|
|
1247
|
+
"3": {
|
|
1248
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1249
|
+
}
|
|
1250
|
+
},
|
|
1251
|
+
"patterns": [
|
|
1252
|
+
{
|
|
1253
|
+
"begin": "(^|\\G)",
|
|
1254
|
+
"contentName": "meta.embedded.block.coffee",
|
|
1255
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
1256
|
+
"patterns": [
|
|
1257
|
+
{
|
|
1258
|
+
"include": "source.coffee"
|
|
1259
|
+
}
|
|
1260
|
+
]
|
|
1261
|
+
}
|
|
1262
|
+
]
|
|
1263
|
+
},
|
|
1264
|
+
"hl-cpp": {
|
|
1265
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)(?:cpp|c\\+\\+)\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
1266
|
+
"beginCaptures": {
|
|
1267
|
+
"0": {
|
|
1268
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
1269
|
+
},
|
|
1270
|
+
"1": {
|
|
1271
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1272
|
+
},
|
|
1273
|
+
"2": {
|
|
1274
|
+
"name": "entity.name.tag.wikitext"
|
|
1275
|
+
},
|
|
1276
|
+
"3": {
|
|
1277
|
+
"patterns": [
|
|
1278
|
+
{
|
|
1279
|
+
"include": "text.html.basic#attribute"
|
|
1280
|
+
},
|
|
1281
|
+
{
|
|
1282
|
+
"include": "$self"
|
|
1283
|
+
}
|
|
1284
|
+
]
|
|
1285
|
+
},
|
|
1286
|
+
"5": {
|
|
1287
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1288
|
+
}
|
|
1289
|
+
},
|
|
1290
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
1291
|
+
"endCaptures": {
|
|
1292
|
+
"0": {
|
|
1293
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
1294
|
+
},
|
|
1295
|
+
"1": {
|
|
1296
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1297
|
+
},
|
|
1298
|
+
"2": {
|
|
1299
|
+
"name": "entity.name.tag.wikitext"
|
|
1300
|
+
},
|
|
1301
|
+
"3": {
|
|
1302
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1303
|
+
}
|
|
1304
|
+
},
|
|
1305
|
+
"patterns": [
|
|
1306
|
+
{
|
|
1307
|
+
"begin": "(^|\\G)",
|
|
1308
|
+
"contentName": "meta.embedded.block.cpp",
|
|
1309
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
1310
|
+
"patterns": [
|
|
1311
|
+
{
|
|
1312
|
+
"include": "source.cpp"
|
|
1313
|
+
}
|
|
1314
|
+
]
|
|
1315
|
+
}
|
|
1316
|
+
]
|
|
1317
|
+
},
|
|
1318
|
+
"hl-csharp": {
|
|
1319
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)(?:csharp|c#|cs)\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
1320
|
+
"beginCaptures": {
|
|
1321
|
+
"0": {
|
|
1322
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
1323
|
+
},
|
|
1324
|
+
"1": {
|
|
1325
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1326
|
+
},
|
|
1327
|
+
"2": {
|
|
1328
|
+
"name": "entity.name.tag.wikitext"
|
|
1329
|
+
},
|
|
1330
|
+
"3": {
|
|
1331
|
+
"patterns": [
|
|
1332
|
+
{
|
|
1333
|
+
"include": "text.html.basic#attribute"
|
|
1334
|
+
},
|
|
1335
|
+
{
|
|
1336
|
+
"include": "$self"
|
|
1337
|
+
}
|
|
1338
|
+
]
|
|
1339
|
+
},
|
|
1340
|
+
"5": {
|
|
1341
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1342
|
+
}
|
|
1343
|
+
},
|
|
1344
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
1345
|
+
"endCaptures": {
|
|
1346
|
+
"0": {
|
|
1347
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
1348
|
+
},
|
|
1349
|
+
"1": {
|
|
1350
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1351
|
+
},
|
|
1352
|
+
"2": {
|
|
1353
|
+
"name": "entity.name.tag.wikitext"
|
|
1354
|
+
},
|
|
1355
|
+
"3": {
|
|
1356
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1357
|
+
}
|
|
1358
|
+
},
|
|
1359
|
+
"patterns": [
|
|
1360
|
+
{
|
|
1361
|
+
"begin": "(^|\\G)",
|
|
1362
|
+
"contentName": "meta.embedded.block.csharp",
|
|
1363
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
1364
|
+
"patterns": [
|
|
1365
|
+
{
|
|
1366
|
+
"include": "source.cs"
|
|
1367
|
+
}
|
|
1368
|
+
]
|
|
1369
|
+
}
|
|
1370
|
+
]
|
|
1371
|
+
},
|
|
1372
|
+
"hl-css": {
|
|
1373
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)css\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
1374
|
+
"beginCaptures": {
|
|
1375
|
+
"0": {
|
|
1376
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
1377
|
+
},
|
|
1378
|
+
"1": {
|
|
1379
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1380
|
+
},
|
|
1381
|
+
"2": {
|
|
1382
|
+
"name": "entity.name.tag.wikitext"
|
|
1383
|
+
},
|
|
1384
|
+
"3": {
|
|
1385
|
+
"patterns": [
|
|
1386
|
+
{
|
|
1387
|
+
"include": "text.html.basic#attribute"
|
|
1388
|
+
},
|
|
1389
|
+
{
|
|
1390
|
+
"include": "$self"
|
|
1391
|
+
}
|
|
1392
|
+
]
|
|
1393
|
+
},
|
|
1394
|
+
"5": {
|
|
1395
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1396
|
+
}
|
|
1397
|
+
},
|
|
1398
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
1399
|
+
"endCaptures": {
|
|
1400
|
+
"0": {
|
|
1401
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
1402
|
+
},
|
|
1403
|
+
"1": {
|
|
1404
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1405
|
+
},
|
|
1406
|
+
"2": {
|
|
1407
|
+
"name": "entity.name.tag.wikitext"
|
|
1408
|
+
},
|
|
1409
|
+
"3": {
|
|
1410
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1411
|
+
}
|
|
1412
|
+
},
|
|
1413
|
+
"patterns": [
|
|
1414
|
+
{
|
|
1415
|
+
"begin": "(^|\\G)",
|
|
1416
|
+
"contentName": "meta.embedded.block.css",
|
|
1417
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
1418
|
+
"patterns": [
|
|
1419
|
+
{
|
|
1420
|
+
"include": "source.css"
|
|
1421
|
+
}
|
|
1422
|
+
]
|
|
1423
|
+
}
|
|
1424
|
+
]
|
|
1425
|
+
},
|
|
1426
|
+
"hl-dart": {
|
|
1427
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)dart\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
1428
|
+
"beginCaptures": {
|
|
1429
|
+
"0": {
|
|
1430
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
1431
|
+
},
|
|
1432
|
+
"1": {
|
|
1433
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1434
|
+
},
|
|
1435
|
+
"2": {
|
|
1436
|
+
"name": "entity.name.tag.wikitext"
|
|
1437
|
+
},
|
|
1438
|
+
"3": {
|
|
1439
|
+
"patterns": [
|
|
1440
|
+
{
|
|
1441
|
+
"include": "text.html.basic#attribute"
|
|
1442
|
+
},
|
|
1443
|
+
{
|
|
1444
|
+
"include": "$self"
|
|
1445
|
+
}
|
|
1446
|
+
]
|
|
1447
|
+
},
|
|
1448
|
+
"5": {
|
|
1449
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1450
|
+
}
|
|
1451
|
+
},
|
|
1452
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
1453
|
+
"endCaptures": {
|
|
1454
|
+
"0": {
|
|
1455
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
1456
|
+
},
|
|
1457
|
+
"1": {
|
|
1458
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1459
|
+
},
|
|
1460
|
+
"2": {
|
|
1461
|
+
"name": "entity.name.tag.wikitext"
|
|
1462
|
+
},
|
|
1463
|
+
"3": {
|
|
1464
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1465
|
+
}
|
|
1466
|
+
},
|
|
1467
|
+
"patterns": [
|
|
1468
|
+
{
|
|
1469
|
+
"begin": "(^|\\G)",
|
|
1470
|
+
"contentName": "meta.embedded.block.dart",
|
|
1471
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
1472
|
+
"patterns": [
|
|
1473
|
+
{
|
|
1474
|
+
"include": "source.dart"
|
|
1475
|
+
}
|
|
1476
|
+
]
|
|
1477
|
+
}
|
|
1478
|
+
]
|
|
1479
|
+
},
|
|
1480
|
+
"hl-diff": {
|
|
1481
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)(?:diff|udiff)\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
1482
|
+
"beginCaptures": {
|
|
1483
|
+
"0": {
|
|
1484
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
1485
|
+
},
|
|
1486
|
+
"1": {
|
|
1487
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1488
|
+
},
|
|
1489
|
+
"2": {
|
|
1490
|
+
"name": "entity.name.tag.wikitext"
|
|
1491
|
+
},
|
|
1492
|
+
"3": {
|
|
1493
|
+
"patterns": [
|
|
1494
|
+
{
|
|
1495
|
+
"include": "text.html.basic#attribute"
|
|
1496
|
+
},
|
|
1497
|
+
{
|
|
1498
|
+
"include": "$self"
|
|
1499
|
+
}
|
|
1500
|
+
]
|
|
1501
|
+
},
|
|
1502
|
+
"5": {
|
|
1503
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1504
|
+
}
|
|
1505
|
+
},
|
|
1506
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
1507
|
+
"endCaptures": {
|
|
1508
|
+
"0": {
|
|
1509
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
1510
|
+
},
|
|
1511
|
+
"1": {
|
|
1512
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1513
|
+
},
|
|
1514
|
+
"2": {
|
|
1515
|
+
"name": "entity.name.tag.wikitext"
|
|
1516
|
+
},
|
|
1517
|
+
"3": {
|
|
1518
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1519
|
+
}
|
|
1520
|
+
},
|
|
1521
|
+
"patterns": [
|
|
1522
|
+
{
|
|
1523
|
+
"begin": "(^|\\G)",
|
|
1524
|
+
"contentName": "meta.embedded.block.diff",
|
|
1525
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
1526
|
+
"patterns": [
|
|
1527
|
+
{
|
|
1528
|
+
"include": "source.diff"
|
|
1529
|
+
}
|
|
1530
|
+
]
|
|
1531
|
+
}
|
|
1532
|
+
]
|
|
1533
|
+
},
|
|
1534
|
+
"hl-dockerfile": {
|
|
1535
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)(?:docker|dockerfile)\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
1536
|
+
"beginCaptures": {
|
|
1537
|
+
"0": {
|
|
1538
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
1539
|
+
},
|
|
1540
|
+
"1": {
|
|
1541
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1542
|
+
},
|
|
1543
|
+
"2": {
|
|
1544
|
+
"name": "entity.name.tag.wikitext"
|
|
1545
|
+
},
|
|
1546
|
+
"3": {
|
|
1547
|
+
"patterns": [
|
|
1548
|
+
{
|
|
1549
|
+
"include": "text.html.basic#attribute"
|
|
1550
|
+
},
|
|
1551
|
+
{
|
|
1552
|
+
"include": "$self"
|
|
1553
|
+
}
|
|
1554
|
+
]
|
|
1555
|
+
},
|
|
1556
|
+
"5": {
|
|
1557
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1558
|
+
}
|
|
1559
|
+
},
|
|
1560
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
1561
|
+
"endCaptures": {
|
|
1562
|
+
"0": {
|
|
1563
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
1564
|
+
},
|
|
1565
|
+
"1": {
|
|
1566
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1567
|
+
},
|
|
1568
|
+
"2": {
|
|
1569
|
+
"name": "entity.name.tag.wikitext"
|
|
1570
|
+
},
|
|
1571
|
+
"3": {
|
|
1572
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1573
|
+
}
|
|
1574
|
+
},
|
|
1575
|
+
"patterns": [
|
|
1576
|
+
{
|
|
1577
|
+
"begin": "(^|\\G)",
|
|
1578
|
+
"contentName": "meta.embedded.block.dockerfile",
|
|
1579
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
1580
|
+
"patterns": [
|
|
1581
|
+
{
|
|
1582
|
+
"include": "source.dockerfile"
|
|
1583
|
+
}
|
|
1584
|
+
]
|
|
1585
|
+
}
|
|
1586
|
+
]
|
|
1587
|
+
},
|
|
1588
|
+
"hl-elixir": {
|
|
1589
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)(?:elixir|ex|exs)\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
1590
|
+
"beginCaptures": {
|
|
1591
|
+
"0": {
|
|
1592
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
1593
|
+
},
|
|
1594
|
+
"1": {
|
|
1595
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1596
|
+
},
|
|
1597
|
+
"2": {
|
|
1598
|
+
"name": "entity.name.tag.wikitext"
|
|
1599
|
+
},
|
|
1600
|
+
"3": {
|
|
1601
|
+
"patterns": [
|
|
1602
|
+
{
|
|
1603
|
+
"include": "text.html.basic#attribute"
|
|
1604
|
+
},
|
|
1605
|
+
{
|
|
1606
|
+
"include": "$self"
|
|
1607
|
+
}
|
|
1608
|
+
]
|
|
1609
|
+
},
|
|
1610
|
+
"5": {
|
|
1611
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1612
|
+
}
|
|
1613
|
+
},
|
|
1614
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
1615
|
+
"endCaptures": {
|
|
1616
|
+
"0": {
|
|
1617
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
1618
|
+
},
|
|
1619
|
+
"1": {
|
|
1620
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1621
|
+
},
|
|
1622
|
+
"2": {
|
|
1623
|
+
"name": "entity.name.tag.wikitext"
|
|
1624
|
+
},
|
|
1625
|
+
"3": {
|
|
1626
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1627
|
+
}
|
|
1628
|
+
},
|
|
1629
|
+
"patterns": [
|
|
1630
|
+
{
|
|
1631
|
+
"begin": "(^|\\G)",
|
|
1632
|
+
"contentName": "meta.embedded.block.elixir",
|
|
1633
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
1634
|
+
"patterns": [
|
|
1635
|
+
{
|
|
1636
|
+
"include": "source.elixir"
|
|
1637
|
+
}
|
|
1638
|
+
]
|
|
1639
|
+
}
|
|
1640
|
+
]
|
|
1641
|
+
},
|
|
1642
|
+
"hl-erlang": {
|
|
1643
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)erlang\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
1644
|
+
"beginCaptures": {
|
|
1645
|
+
"0": {
|
|
1646
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
1647
|
+
},
|
|
1648
|
+
"1": {
|
|
1649
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1650
|
+
},
|
|
1651
|
+
"2": {
|
|
1652
|
+
"name": "entity.name.tag.wikitext"
|
|
1653
|
+
},
|
|
1654
|
+
"3": {
|
|
1655
|
+
"patterns": [
|
|
1656
|
+
{
|
|
1657
|
+
"include": "text.html.basic#attribute"
|
|
1658
|
+
},
|
|
1659
|
+
{
|
|
1660
|
+
"include": "$self"
|
|
1661
|
+
}
|
|
1662
|
+
]
|
|
1663
|
+
},
|
|
1664
|
+
"5": {
|
|
1665
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1666
|
+
}
|
|
1667
|
+
},
|
|
1668
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
1669
|
+
"endCaptures": {
|
|
1670
|
+
"0": {
|
|
1671
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
1672
|
+
},
|
|
1673
|
+
"1": {
|
|
1674
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1675
|
+
},
|
|
1676
|
+
"2": {
|
|
1677
|
+
"name": "entity.name.tag.wikitext"
|
|
1678
|
+
},
|
|
1679
|
+
"3": {
|
|
1680
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1681
|
+
}
|
|
1682
|
+
},
|
|
1683
|
+
"patterns": [
|
|
1684
|
+
{
|
|
1685
|
+
"begin": "(^|\\G)",
|
|
1686
|
+
"contentName": "meta.embedded.block.erlang",
|
|
1687
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
1688
|
+
"patterns": [
|
|
1689
|
+
{
|
|
1690
|
+
"include": "source.erlang"
|
|
1691
|
+
}
|
|
1692
|
+
]
|
|
1693
|
+
}
|
|
1694
|
+
]
|
|
1695
|
+
},
|
|
1696
|
+
"hl-fsharp": {
|
|
1697
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)(?:fsharp|f#)\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
1698
|
+
"beginCaptures": {
|
|
1699
|
+
"0": {
|
|
1700
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
1701
|
+
},
|
|
1702
|
+
"1": {
|
|
1703
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1704
|
+
},
|
|
1705
|
+
"2": {
|
|
1706
|
+
"name": "entity.name.tag.wikitext"
|
|
1707
|
+
},
|
|
1708
|
+
"3": {
|
|
1709
|
+
"patterns": [
|
|
1710
|
+
{
|
|
1711
|
+
"include": "text.html.basic#attribute"
|
|
1712
|
+
},
|
|
1713
|
+
{
|
|
1714
|
+
"include": "$self"
|
|
1715
|
+
}
|
|
1716
|
+
]
|
|
1717
|
+
},
|
|
1718
|
+
"5": {
|
|
1719
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1720
|
+
}
|
|
1721
|
+
},
|
|
1722
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
1723
|
+
"endCaptures": {
|
|
1724
|
+
"0": {
|
|
1725
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
1726
|
+
},
|
|
1727
|
+
"1": {
|
|
1728
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1729
|
+
},
|
|
1730
|
+
"2": {
|
|
1731
|
+
"name": "entity.name.tag.wikitext"
|
|
1732
|
+
},
|
|
1733
|
+
"3": {
|
|
1734
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1735
|
+
}
|
|
1736
|
+
},
|
|
1737
|
+
"patterns": [
|
|
1738
|
+
{
|
|
1739
|
+
"begin": "(^|\\G)",
|
|
1740
|
+
"contentName": "meta.embedded.block.fsharp",
|
|
1741
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
1742
|
+
"patterns": [
|
|
1743
|
+
{
|
|
1744
|
+
"include": "source.fsharp"
|
|
1745
|
+
}
|
|
1746
|
+
]
|
|
1747
|
+
}
|
|
1748
|
+
]
|
|
1749
|
+
},
|
|
1750
|
+
"hl-go": {
|
|
1751
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)(?:go|golang)\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
1752
|
+
"beginCaptures": {
|
|
1753
|
+
"0": {
|
|
1754
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
1755
|
+
},
|
|
1756
|
+
"1": {
|
|
1757
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1758
|
+
},
|
|
1759
|
+
"2": {
|
|
1760
|
+
"name": "entity.name.tag.wikitext"
|
|
1761
|
+
},
|
|
1762
|
+
"3": {
|
|
1763
|
+
"patterns": [
|
|
1764
|
+
{
|
|
1765
|
+
"include": "text.html.basic#attribute"
|
|
1766
|
+
},
|
|
1767
|
+
{
|
|
1768
|
+
"include": "$self"
|
|
1769
|
+
}
|
|
1770
|
+
]
|
|
1771
|
+
},
|
|
1772
|
+
"5": {
|
|
1773
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1774
|
+
}
|
|
1775
|
+
},
|
|
1776
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
1777
|
+
"endCaptures": {
|
|
1778
|
+
"0": {
|
|
1779
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
1780
|
+
},
|
|
1781
|
+
"1": {
|
|
1782
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1783
|
+
},
|
|
1784
|
+
"2": {
|
|
1785
|
+
"name": "entity.name.tag.wikitext"
|
|
1786
|
+
},
|
|
1787
|
+
"3": {
|
|
1788
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1789
|
+
}
|
|
1790
|
+
},
|
|
1791
|
+
"patterns": [
|
|
1792
|
+
{
|
|
1793
|
+
"begin": "(^|\\G)",
|
|
1794
|
+
"contentName": "meta.embedded.block.go",
|
|
1795
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
1796
|
+
"patterns": [
|
|
1797
|
+
{
|
|
1798
|
+
"include": "source.go"
|
|
1799
|
+
}
|
|
1800
|
+
]
|
|
1801
|
+
}
|
|
1802
|
+
]
|
|
1803
|
+
},
|
|
1804
|
+
"hl-groovy": {
|
|
1805
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)groovy\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
1806
|
+
"beginCaptures": {
|
|
1807
|
+
"0": {
|
|
1808
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
1809
|
+
},
|
|
1810
|
+
"1": {
|
|
1811
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1812
|
+
},
|
|
1813
|
+
"2": {
|
|
1814
|
+
"name": "entity.name.tag.wikitext"
|
|
1815
|
+
},
|
|
1816
|
+
"3": {
|
|
1817
|
+
"patterns": [
|
|
1818
|
+
{
|
|
1819
|
+
"include": "text.html.basic#attribute"
|
|
1820
|
+
},
|
|
1821
|
+
{
|
|
1822
|
+
"include": "$self"
|
|
1823
|
+
}
|
|
1824
|
+
]
|
|
1825
|
+
},
|
|
1826
|
+
"5": {
|
|
1827
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1828
|
+
}
|
|
1829
|
+
},
|
|
1830
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
1831
|
+
"endCaptures": {
|
|
1832
|
+
"0": {
|
|
1833
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
1834
|
+
},
|
|
1835
|
+
"1": {
|
|
1836
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1837
|
+
},
|
|
1838
|
+
"2": {
|
|
1839
|
+
"name": "entity.name.tag.wikitext"
|
|
1840
|
+
},
|
|
1841
|
+
"3": {
|
|
1842
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1843
|
+
}
|
|
1844
|
+
},
|
|
1845
|
+
"patterns": [
|
|
1846
|
+
{
|
|
1847
|
+
"begin": "(^|\\G)",
|
|
1848
|
+
"contentName": "meta.embedded.block.groovy",
|
|
1849
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
1850
|
+
"patterns": [
|
|
1851
|
+
{
|
|
1852
|
+
"include": "source.groovy"
|
|
1853
|
+
}
|
|
1854
|
+
]
|
|
1855
|
+
}
|
|
1856
|
+
]
|
|
1857
|
+
},
|
|
1858
|
+
"hl-handlebars": {
|
|
1859
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)handlebars\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
1860
|
+
"beginCaptures": {
|
|
1861
|
+
"0": {
|
|
1862
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
1863
|
+
},
|
|
1864
|
+
"1": {
|
|
1865
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1866
|
+
},
|
|
1867
|
+
"2": {
|
|
1868
|
+
"name": "entity.name.tag.wikitext"
|
|
1869
|
+
},
|
|
1870
|
+
"3": {
|
|
1871
|
+
"patterns": [
|
|
1872
|
+
{
|
|
1873
|
+
"include": "text.html.basic#attribute"
|
|
1874
|
+
},
|
|
1875
|
+
{
|
|
1876
|
+
"include": "$self"
|
|
1877
|
+
}
|
|
1878
|
+
]
|
|
1879
|
+
},
|
|
1880
|
+
"5": {
|
|
1881
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1882
|
+
}
|
|
1883
|
+
},
|
|
1884
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
1885
|
+
"endCaptures": {
|
|
1886
|
+
"0": {
|
|
1887
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
1888
|
+
},
|
|
1889
|
+
"1": {
|
|
1890
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1891
|
+
},
|
|
1892
|
+
"2": {
|
|
1893
|
+
"name": "entity.name.tag.wikitext"
|
|
1894
|
+
},
|
|
1895
|
+
"3": {
|
|
1896
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1897
|
+
}
|
|
1898
|
+
},
|
|
1899
|
+
"patterns": [
|
|
1900
|
+
{
|
|
1901
|
+
"begin": "(^|\\G)",
|
|
1902
|
+
"contentName": "meta.embedded.block.handlebars",
|
|
1903
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
1904
|
+
"patterns": [
|
|
1905
|
+
{
|
|
1906
|
+
"include": "text.html.handlebars"
|
|
1907
|
+
}
|
|
1908
|
+
]
|
|
1909
|
+
}
|
|
1910
|
+
]
|
|
1911
|
+
},
|
|
1912
|
+
"hl-html": {
|
|
1913
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)html\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
1914
|
+
"beginCaptures": {
|
|
1915
|
+
"0": {
|
|
1916
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
1917
|
+
},
|
|
1918
|
+
"1": {
|
|
1919
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1920
|
+
},
|
|
1921
|
+
"2": {
|
|
1922
|
+
"name": "entity.name.tag.wikitext"
|
|
1923
|
+
},
|
|
1924
|
+
"3": {
|
|
1925
|
+
"patterns": [
|
|
1926
|
+
{
|
|
1927
|
+
"include": "text.html.basic#attribute"
|
|
1928
|
+
},
|
|
1929
|
+
{
|
|
1930
|
+
"include": "$self"
|
|
1931
|
+
}
|
|
1932
|
+
]
|
|
1933
|
+
},
|
|
1934
|
+
"5": {
|
|
1935
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1936
|
+
}
|
|
1937
|
+
},
|
|
1938
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
1939
|
+
"endCaptures": {
|
|
1940
|
+
"0": {
|
|
1941
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
1942
|
+
},
|
|
1943
|
+
"1": {
|
|
1944
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1945
|
+
},
|
|
1946
|
+
"2": {
|
|
1947
|
+
"name": "entity.name.tag.wikitext"
|
|
1948
|
+
},
|
|
1949
|
+
"3": {
|
|
1950
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1951
|
+
}
|
|
1952
|
+
},
|
|
1953
|
+
"patterns": [
|
|
1954
|
+
{
|
|
1955
|
+
"begin": "(^|\\G)",
|
|
1956
|
+
"contentName": "meta.embedded.block.html",
|
|
1957
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
1958
|
+
"patterns": [
|
|
1959
|
+
{
|
|
1960
|
+
"include": "text.html.basic"
|
|
1961
|
+
}
|
|
1962
|
+
]
|
|
1963
|
+
}
|
|
1964
|
+
]
|
|
1965
|
+
},
|
|
1966
|
+
"hl-ini": {
|
|
1967
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)(?:ini|cfg|dosini)\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
1968
|
+
"beginCaptures": {
|
|
1969
|
+
"0": {
|
|
1970
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
1971
|
+
},
|
|
1972
|
+
"1": {
|
|
1973
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1974
|
+
},
|
|
1975
|
+
"2": {
|
|
1976
|
+
"name": "entity.name.tag.wikitext"
|
|
1977
|
+
},
|
|
1978
|
+
"3": {
|
|
1979
|
+
"patterns": [
|
|
1980
|
+
{
|
|
1981
|
+
"include": "text.html.basic#attribute"
|
|
1982
|
+
},
|
|
1983
|
+
{
|
|
1984
|
+
"include": "$self"
|
|
1985
|
+
}
|
|
1986
|
+
]
|
|
1987
|
+
},
|
|
1988
|
+
"5": {
|
|
1989
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
1990
|
+
}
|
|
1991
|
+
},
|
|
1992
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
1993
|
+
"endCaptures": {
|
|
1994
|
+
"0": {
|
|
1995
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
1996
|
+
},
|
|
1997
|
+
"1": {
|
|
1998
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
1999
|
+
},
|
|
2000
|
+
"2": {
|
|
2001
|
+
"name": "entity.name.tag.wikitext"
|
|
2002
|
+
},
|
|
2003
|
+
"3": {
|
|
2004
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2005
|
+
}
|
|
2006
|
+
},
|
|
2007
|
+
"patterns": [
|
|
2008
|
+
{
|
|
2009
|
+
"begin": "(^|\\G)",
|
|
2010
|
+
"contentName": "meta.embedded.block.ini",
|
|
2011
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
2012
|
+
"patterns": [
|
|
2013
|
+
{
|
|
2014
|
+
"include": "source.ini"
|
|
2015
|
+
}
|
|
2016
|
+
]
|
|
2017
|
+
}
|
|
2018
|
+
]
|
|
2019
|
+
},
|
|
2020
|
+
"hl-java": {
|
|
2021
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)java\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
2022
|
+
"beginCaptures": {
|
|
2023
|
+
"0": {
|
|
2024
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
2025
|
+
},
|
|
2026
|
+
"1": {
|
|
2027
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2028
|
+
},
|
|
2029
|
+
"2": {
|
|
2030
|
+
"name": "entity.name.tag.wikitext"
|
|
2031
|
+
},
|
|
2032
|
+
"3": {
|
|
2033
|
+
"patterns": [
|
|
2034
|
+
{
|
|
2035
|
+
"include": "text.html.basic#attribute"
|
|
2036
|
+
},
|
|
2037
|
+
{
|
|
2038
|
+
"include": "$self"
|
|
2039
|
+
}
|
|
2040
|
+
]
|
|
2041
|
+
},
|
|
2042
|
+
"5": {
|
|
2043
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2044
|
+
}
|
|
2045
|
+
},
|
|
2046
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
2047
|
+
"endCaptures": {
|
|
2048
|
+
"0": {
|
|
2049
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
2050
|
+
},
|
|
2051
|
+
"1": {
|
|
2052
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2053
|
+
},
|
|
2054
|
+
"2": {
|
|
2055
|
+
"name": "entity.name.tag.wikitext"
|
|
2056
|
+
},
|
|
2057
|
+
"3": {
|
|
2058
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2059
|
+
}
|
|
2060
|
+
},
|
|
2061
|
+
"patterns": [
|
|
2062
|
+
{
|
|
2063
|
+
"begin": "(^|\\G)",
|
|
2064
|
+
"contentName": "meta.embedded.block.java",
|
|
2065
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
2066
|
+
"patterns": [
|
|
2067
|
+
{
|
|
2068
|
+
"include": "source.java"
|
|
2069
|
+
}
|
|
2070
|
+
]
|
|
2071
|
+
}
|
|
2072
|
+
]
|
|
2073
|
+
},
|
|
2074
|
+
"hl-js": {
|
|
2075
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)(?:javascript|js)\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
2076
|
+
"beginCaptures": {
|
|
2077
|
+
"0": {
|
|
2078
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
2079
|
+
},
|
|
2080
|
+
"1": {
|
|
2081
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2082
|
+
},
|
|
2083
|
+
"2": {
|
|
2084
|
+
"name": "entity.name.tag.wikitext"
|
|
2085
|
+
},
|
|
2086
|
+
"3": {
|
|
2087
|
+
"patterns": [
|
|
2088
|
+
{
|
|
2089
|
+
"include": "text.html.basic#attribute"
|
|
2090
|
+
},
|
|
2091
|
+
{
|
|
2092
|
+
"include": "$self"
|
|
2093
|
+
}
|
|
2094
|
+
]
|
|
2095
|
+
},
|
|
2096
|
+
"5": {
|
|
2097
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2098
|
+
}
|
|
2099
|
+
},
|
|
2100
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
2101
|
+
"endCaptures": {
|
|
2102
|
+
"0": {
|
|
2103
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
2104
|
+
},
|
|
2105
|
+
"1": {
|
|
2106
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2107
|
+
},
|
|
2108
|
+
"2": {
|
|
2109
|
+
"name": "entity.name.tag.wikitext"
|
|
2110
|
+
},
|
|
2111
|
+
"3": {
|
|
2112
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2113
|
+
}
|
|
2114
|
+
},
|
|
2115
|
+
"patterns": [
|
|
2116
|
+
{
|
|
2117
|
+
"begin": "(^|\\G)",
|
|
2118
|
+
"contentName": "meta.embedded.block.js",
|
|
2119
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
2120
|
+
"patterns": [
|
|
2121
|
+
{
|
|
2122
|
+
"include": "source.js"
|
|
2123
|
+
}
|
|
2124
|
+
]
|
|
2125
|
+
}
|
|
2126
|
+
]
|
|
2127
|
+
},
|
|
2128
|
+
"hl-json": {
|
|
2129
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:\"json\"|'json'|\"json-object\"|'json-object'))(?:\\s+[^>]+)?)\\s*(>)",
|
|
2130
|
+
"beginCaptures": {
|
|
2131
|
+
"0": {
|
|
2132
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
2133
|
+
},
|
|
2134
|
+
"1": {
|
|
2135
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2136
|
+
},
|
|
2137
|
+
"2": {
|
|
2138
|
+
"name": "entity.name.tag.wikitext"
|
|
2139
|
+
},
|
|
2140
|
+
"3": {
|
|
2141
|
+
"patterns": [
|
|
2142
|
+
{
|
|
2143
|
+
"include": "text.html.basic#attribute"
|
|
2144
|
+
},
|
|
2145
|
+
{
|
|
2146
|
+
"include": "$self"
|
|
2147
|
+
}
|
|
2148
|
+
]
|
|
2149
|
+
},
|
|
2150
|
+
"4": {
|
|
2151
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2152
|
+
}
|
|
2153
|
+
},
|
|
2154
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
2155
|
+
"endCaptures": {
|
|
2156
|
+
"0": {
|
|
2157
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
2158
|
+
},
|
|
2159
|
+
"1": {
|
|
2160
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2161
|
+
},
|
|
2162
|
+
"2": {
|
|
2163
|
+
"name": "entity.name.tag.wikitext"
|
|
2164
|
+
},
|
|
2165
|
+
"3": {
|
|
2166
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2167
|
+
}
|
|
2168
|
+
},
|
|
2169
|
+
"patterns": [
|
|
2170
|
+
{
|
|
2171
|
+
"begin": "(^|\\G)",
|
|
2172
|
+
"contentName": "meta.embedded.block.json",
|
|
2173
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
2174
|
+
"patterns": [
|
|
2175
|
+
{
|
|
2176
|
+
"include": "source.json.comments"
|
|
2177
|
+
}
|
|
2178
|
+
]
|
|
2179
|
+
}
|
|
2180
|
+
]
|
|
2181
|
+
},
|
|
2182
|
+
"hl-julia": {
|
|
2183
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:\"julia\"|'julia'|\"jl\"|'jl'))(?:\\s+[^>]+)?)\\s*(>)",
|
|
2184
|
+
"beginCaptures": {
|
|
2185
|
+
"0": {
|
|
2186
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
2187
|
+
},
|
|
2188
|
+
"1": {
|
|
2189
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2190
|
+
},
|
|
2191
|
+
"2": {
|
|
2192
|
+
"name": "entity.name.tag.wikitext"
|
|
2193
|
+
},
|
|
2194
|
+
"3": {
|
|
2195
|
+
"patterns": [
|
|
2196
|
+
{
|
|
2197
|
+
"include": "text.html.basic#attribute"
|
|
2198
|
+
},
|
|
2199
|
+
{
|
|
2200
|
+
"include": "$self"
|
|
2201
|
+
}
|
|
2202
|
+
]
|
|
2203
|
+
},
|
|
2204
|
+
"4": {
|
|
2205
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2206
|
+
}
|
|
2207
|
+
},
|
|
2208
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
2209
|
+
"endCaptures": {
|
|
2210
|
+
"0": {
|
|
2211
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
2212
|
+
},
|
|
2213
|
+
"1": {
|
|
2214
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2215
|
+
},
|
|
2216
|
+
"2": {
|
|
2217
|
+
"name": "entity.name.tag.wikitext"
|
|
2218
|
+
},
|
|
2219
|
+
"3": {
|
|
2220
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2221
|
+
}
|
|
2222
|
+
},
|
|
2223
|
+
"patterns": [
|
|
2224
|
+
{
|
|
2225
|
+
"begin": "(^|\\G)",
|
|
2226
|
+
"contentName": "meta.embedded.block.julia",
|
|
2227
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
2228
|
+
"patterns": [
|
|
2229
|
+
{
|
|
2230
|
+
"include": "source.julia"
|
|
2231
|
+
}
|
|
2232
|
+
]
|
|
2233
|
+
}
|
|
2234
|
+
]
|
|
2235
|
+
},
|
|
2236
|
+
"hl-latex": {
|
|
2237
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)(?:tex|latex)\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
2238
|
+
"beginCaptures": {
|
|
2239
|
+
"0": {
|
|
2240
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
2241
|
+
},
|
|
2242
|
+
"1": {
|
|
2243
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2244
|
+
},
|
|
2245
|
+
"2": {
|
|
2246
|
+
"name": "entity.name.tag.wikitext"
|
|
2247
|
+
},
|
|
2248
|
+
"3": {
|
|
2249
|
+
"patterns": [
|
|
2250
|
+
{
|
|
2251
|
+
"include": "text.html.basic#attribute"
|
|
2252
|
+
},
|
|
2253
|
+
{
|
|
2254
|
+
"include": "$self"
|
|
2255
|
+
}
|
|
2256
|
+
]
|
|
2257
|
+
},
|
|
2258
|
+
"5": {
|
|
2259
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2260
|
+
}
|
|
2261
|
+
},
|
|
2262
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
2263
|
+
"endCaptures": {
|
|
2264
|
+
"0": {
|
|
2265
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
2266
|
+
},
|
|
2267
|
+
"1": {
|
|
2268
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2269
|
+
},
|
|
2270
|
+
"2": {
|
|
2271
|
+
"name": "entity.name.tag.wikitext"
|
|
2272
|
+
},
|
|
2273
|
+
"3": {
|
|
2274
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2275
|
+
}
|
|
2276
|
+
},
|
|
2277
|
+
"patterns": [
|
|
2278
|
+
{
|
|
2279
|
+
"begin": "(^|\\G)",
|
|
2280
|
+
"contentName": "meta.embedded.block.latex",
|
|
2281
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
2282
|
+
"patterns": [
|
|
2283
|
+
{
|
|
2284
|
+
"include": "text.tex.latex"
|
|
2285
|
+
}
|
|
2286
|
+
]
|
|
2287
|
+
}
|
|
2288
|
+
]
|
|
2289
|
+
},
|
|
2290
|
+
"hl-less": {
|
|
2291
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:\"less\"|'less'))(?:\\s+[^>]+)?)\\s*(>)",
|
|
2292
|
+
"beginCaptures": {
|
|
2293
|
+
"0": {
|
|
2294
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
2295
|
+
},
|
|
2296
|
+
"1": {
|
|
2297
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2298
|
+
},
|
|
2299
|
+
"2": {
|
|
2300
|
+
"name": "entity.name.tag.wikitext"
|
|
2301
|
+
},
|
|
2302
|
+
"3": {
|
|
2303
|
+
"patterns": [
|
|
2304
|
+
{
|
|
2305
|
+
"include": "text.html.basic#attribute"
|
|
2306
|
+
},
|
|
2307
|
+
{
|
|
2308
|
+
"include": "$self"
|
|
2309
|
+
}
|
|
2310
|
+
]
|
|
2311
|
+
},
|
|
2312
|
+
"4": {
|
|
2313
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2314
|
+
}
|
|
2315
|
+
},
|
|
2316
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
2317
|
+
"endCaptures": {
|
|
2318
|
+
"0": {
|
|
2319
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
2320
|
+
},
|
|
2321
|
+
"1": {
|
|
2322
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2323
|
+
},
|
|
2324
|
+
"2": {
|
|
2325
|
+
"name": "entity.name.tag.wikitext"
|
|
2326
|
+
},
|
|
2327
|
+
"3": {
|
|
2328
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2329
|
+
}
|
|
2330
|
+
},
|
|
2331
|
+
"patterns": [
|
|
2332
|
+
{
|
|
2333
|
+
"begin": "(^|\\G)",
|
|
2334
|
+
"contentName": "meta.embedded.block.less",
|
|
2335
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
2336
|
+
"patterns": [
|
|
2337
|
+
{
|
|
2338
|
+
"include": "source.css.less"
|
|
2339
|
+
}
|
|
2340
|
+
]
|
|
2341
|
+
}
|
|
2342
|
+
]
|
|
2343
|
+
},
|
|
2344
|
+
"hl-lua": {
|
|
2345
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)lua\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
2346
|
+
"beginCaptures": {
|
|
2347
|
+
"0": {
|
|
2348
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
2349
|
+
},
|
|
2350
|
+
"1": {
|
|
2351
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2352
|
+
},
|
|
2353
|
+
"2": {
|
|
2354
|
+
"name": "entity.name.tag.wikitext"
|
|
2355
|
+
},
|
|
2356
|
+
"3": {
|
|
2357
|
+
"patterns": [
|
|
2358
|
+
{
|
|
2359
|
+
"include": "text.html.basic#attribute"
|
|
2360
|
+
},
|
|
2361
|
+
{
|
|
2362
|
+
"include": "$self"
|
|
2363
|
+
}
|
|
2364
|
+
]
|
|
2365
|
+
},
|
|
2366
|
+
"5": {
|
|
2367
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2368
|
+
}
|
|
2369
|
+
},
|
|
2370
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
2371
|
+
"endCaptures": {
|
|
2372
|
+
"0": {
|
|
2373
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
2374
|
+
},
|
|
2375
|
+
"1": {
|
|
2376
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2377
|
+
},
|
|
2378
|
+
"2": {
|
|
2379
|
+
"name": "entity.name.tag.wikitext"
|
|
2380
|
+
},
|
|
2381
|
+
"3": {
|
|
2382
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2383
|
+
}
|
|
2384
|
+
},
|
|
2385
|
+
"patterns": [
|
|
2386
|
+
{
|
|
2387
|
+
"begin": "(^|\\G)",
|
|
2388
|
+
"contentName": "meta.embedded.block.lua",
|
|
2389
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
2390
|
+
"patterns": [
|
|
2391
|
+
{
|
|
2392
|
+
"include": "source.lua"
|
|
2393
|
+
}
|
|
2394
|
+
]
|
|
2395
|
+
}
|
|
2396
|
+
]
|
|
2397
|
+
},
|
|
2398
|
+
"hl-makefile": {
|
|
2399
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)(?:make|makefile|mf|bsdmake)\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
2400
|
+
"beginCaptures": {
|
|
2401
|
+
"0": {
|
|
2402
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
2403
|
+
},
|
|
2404
|
+
"1": {
|
|
2405
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2406
|
+
},
|
|
2407
|
+
"2": {
|
|
2408
|
+
"name": "entity.name.tag.wikitext"
|
|
2409
|
+
},
|
|
2410
|
+
"3": {
|
|
2411
|
+
"patterns": [
|
|
2412
|
+
{
|
|
2413
|
+
"include": "text.html.basic#attribute"
|
|
2414
|
+
},
|
|
2415
|
+
{
|
|
2416
|
+
"include": "$self"
|
|
2417
|
+
}
|
|
2418
|
+
]
|
|
2419
|
+
},
|
|
2420
|
+
"5": {
|
|
2421
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2422
|
+
}
|
|
2423
|
+
},
|
|
2424
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
2425
|
+
"endCaptures": {
|
|
2426
|
+
"0": {
|
|
2427
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
2428
|
+
},
|
|
2429
|
+
"1": {
|
|
2430
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2431
|
+
},
|
|
2432
|
+
"2": {
|
|
2433
|
+
"name": "entity.name.tag.wikitext"
|
|
2434
|
+
},
|
|
2435
|
+
"3": {
|
|
2436
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2437
|
+
}
|
|
2438
|
+
},
|
|
2439
|
+
"patterns": [
|
|
2440
|
+
{
|
|
2441
|
+
"begin": "(^|\\G)",
|
|
2442
|
+
"contentName": "meta.embedded.block.makefile",
|
|
2443
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
2444
|
+
"patterns": [
|
|
2445
|
+
{
|
|
2446
|
+
"include": "source.makefile"
|
|
2447
|
+
}
|
|
2448
|
+
]
|
|
2449
|
+
}
|
|
2450
|
+
]
|
|
2451
|
+
},
|
|
2452
|
+
"hl-markdown": {
|
|
2453
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)(?:markdown|md)\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
2454
|
+
"beginCaptures": {
|
|
2455
|
+
"0": {
|
|
2456
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
2457
|
+
},
|
|
2458
|
+
"1": {
|
|
2459
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2460
|
+
},
|
|
2461
|
+
"2": {
|
|
2462
|
+
"name": "entity.name.tag.wikitext"
|
|
2463
|
+
},
|
|
2464
|
+
"3": {
|
|
2465
|
+
"patterns": [
|
|
2466
|
+
{
|
|
2467
|
+
"include": "text.html.basic#attribute"
|
|
2468
|
+
},
|
|
2469
|
+
{
|
|
2470
|
+
"include": "$self"
|
|
2471
|
+
}
|
|
2472
|
+
]
|
|
2473
|
+
},
|
|
2474
|
+
"5": {
|
|
2475
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2476
|
+
}
|
|
2477
|
+
},
|
|
2478
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
2479
|
+
"endCaptures": {
|
|
2480
|
+
"0": {
|
|
2481
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
2482
|
+
},
|
|
2483
|
+
"1": {
|
|
2484
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2485
|
+
},
|
|
2486
|
+
"2": {
|
|
2487
|
+
"name": "entity.name.tag.wikitext"
|
|
2488
|
+
},
|
|
2489
|
+
"3": {
|
|
2490
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2491
|
+
}
|
|
2492
|
+
},
|
|
2493
|
+
"patterns": [
|
|
2494
|
+
{
|
|
2495
|
+
"begin": "(^|\\G)",
|
|
2496
|
+
"contentName": "meta.embedded.block.markdown",
|
|
2497
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
2498
|
+
"patterns": [
|
|
2499
|
+
{
|
|
2500
|
+
"include": "text.html.markdown"
|
|
2501
|
+
}
|
|
2502
|
+
]
|
|
2503
|
+
}
|
|
2504
|
+
]
|
|
2505
|
+
},
|
|
2506
|
+
"hl-objc": {
|
|
2507
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:\"objective-c\"|'objective-c'|\"objectivec\"|'objectivec'|\"obj-c\"|'obj-c'|\"objc\"|'objc'))(?:\\s+[^>]+)?)\\s*(>)",
|
|
2508
|
+
"beginCaptures": {
|
|
2509
|
+
"0": {
|
|
2510
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
2511
|
+
},
|
|
2512
|
+
"1": {
|
|
2513
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2514
|
+
},
|
|
2515
|
+
"2": {
|
|
2516
|
+
"name": "entity.name.tag.wikitext"
|
|
2517
|
+
},
|
|
2518
|
+
"3": {
|
|
2519
|
+
"patterns": [
|
|
2520
|
+
{
|
|
2521
|
+
"include": "text.html.basic#attribute"
|
|
2522
|
+
},
|
|
2523
|
+
{
|
|
2524
|
+
"include": "$self"
|
|
2525
|
+
}
|
|
2526
|
+
]
|
|
2527
|
+
},
|
|
2528
|
+
"4": {
|
|
2529
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2530
|
+
}
|
|
2531
|
+
},
|
|
2532
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
2533
|
+
"endCaptures": {
|
|
2534
|
+
"0": {
|
|
2535
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
2536
|
+
},
|
|
2537
|
+
"1": {
|
|
2538
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2539
|
+
},
|
|
2540
|
+
"2": {
|
|
2541
|
+
"name": "entity.name.tag.wikitext"
|
|
2542
|
+
},
|
|
2543
|
+
"3": {
|
|
2544
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2545
|
+
}
|
|
2546
|
+
},
|
|
2547
|
+
"patterns": [
|
|
2548
|
+
{
|
|
2549
|
+
"begin": "(^|\\G)",
|
|
2550
|
+
"contentName": "meta.embedded.block.objc",
|
|
2551
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
2552
|
+
"patterns": [
|
|
2553
|
+
{
|
|
2554
|
+
"include": "source.objc"
|
|
2555
|
+
}
|
|
2556
|
+
]
|
|
2557
|
+
}
|
|
2558
|
+
]
|
|
2559
|
+
},
|
|
2560
|
+
"hl-perl": {
|
|
2561
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)(?:perl|ple)\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
2562
|
+
"beginCaptures": {
|
|
2563
|
+
"0": {
|
|
2564
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
2565
|
+
},
|
|
2566
|
+
"1": {
|
|
2567
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2568
|
+
},
|
|
2569
|
+
"2": {
|
|
2570
|
+
"name": "entity.name.tag.wikitext"
|
|
2571
|
+
},
|
|
2572
|
+
"3": {
|
|
2573
|
+
"patterns": [
|
|
2574
|
+
{
|
|
2575
|
+
"include": "text.html.basic#attribute"
|
|
2576
|
+
},
|
|
2577
|
+
{
|
|
2578
|
+
"include": "$self"
|
|
2579
|
+
}
|
|
2580
|
+
]
|
|
2581
|
+
},
|
|
2582
|
+
"5": {
|
|
2583
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2584
|
+
}
|
|
2585
|
+
},
|
|
2586
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
2587
|
+
"endCaptures": {
|
|
2588
|
+
"0": {
|
|
2589
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
2590
|
+
},
|
|
2591
|
+
"1": {
|
|
2592
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2593
|
+
},
|
|
2594
|
+
"2": {
|
|
2595
|
+
"name": "entity.name.tag.wikitext"
|
|
2596
|
+
},
|
|
2597
|
+
"3": {
|
|
2598
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2599
|
+
}
|
|
2600
|
+
},
|
|
2601
|
+
"patterns": [
|
|
2602
|
+
{
|
|
2603
|
+
"begin": "(^|\\G)",
|
|
2604
|
+
"contentName": "meta.embedded.block.perl",
|
|
2605
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
2606
|
+
"patterns": [
|
|
2607
|
+
{
|
|
2608
|
+
"include": "source.perl"
|
|
2609
|
+
}
|
|
2610
|
+
]
|
|
2611
|
+
}
|
|
2612
|
+
]
|
|
2613
|
+
},
|
|
2614
|
+
"hl-perl6": {
|
|
2615
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:\"perl6\"|'perl6'|\"pl6\"|'pl6'|\"raku\"|'raku'))(?:\\s+[^>]+)?)\\s*(>)",
|
|
2616
|
+
"beginCaptures": {
|
|
2617
|
+
"0": {
|
|
2618
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
2619
|
+
},
|
|
2620
|
+
"1": {
|
|
2621
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2622
|
+
},
|
|
2623
|
+
"2": {
|
|
2624
|
+
"name": "entity.name.tag.wikitext"
|
|
2625
|
+
},
|
|
2626
|
+
"3": {
|
|
2627
|
+
"patterns": [
|
|
2628
|
+
{
|
|
2629
|
+
"include": "text.html.basic#attribute"
|
|
2630
|
+
},
|
|
2631
|
+
{
|
|
2632
|
+
"include": "$self"
|
|
2633
|
+
}
|
|
2634
|
+
]
|
|
2635
|
+
},
|
|
2636
|
+
"4": {
|
|
2637
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2638
|
+
}
|
|
2639
|
+
},
|
|
2640
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
2641
|
+
"endCaptures": {
|
|
2642
|
+
"0": {
|
|
2643
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
2644
|
+
},
|
|
2645
|
+
"1": {
|
|
2646
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2647
|
+
},
|
|
2648
|
+
"2": {
|
|
2649
|
+
"name": "entity.name.tag.wikitext"
|
|
2650
|
+
},
|
|
2651
|
+
"3": {
|
|
2652
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2653
|
+
}
|
|
2654
|
+
},
|
|
2655
|
+
"patterns": [
|
|
2656
|
+
{
|
|
2657
|
+
"begin": "(^|\\G)",
|
|
2658
|
+
"contentName": "meta.embedded.block.perl6",
|
|
2659
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
2660
|
+
"patterns": [
|
|
2661
|
+
{
|
|
2662
|
+
"include": "source.perl.6"
|
|
2663
|
+
}
|
|
2664
|
+
]
|
|
2665
|
+
}
|
|
2666
|
+
]
|
|
2667
|
+
},
|
|
2668
|
+
"hl-php": {
|
|
2669
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)(?:php|php3|php4|php5)\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
2670
|
+
"beginCaptures": {
|
|
2671
|
+
"0": {
|
|
2672
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
2673
|
+
},
|
|
2674
|
+
"1": {
|
|
2675
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2676
|
+
},
|
|
2677
|
+
"2": {
|
|
2678
|
+
"name": "entity.name.tag.wikitext"
|
|
2679
|
+
},
|
|
2680
|
+
"3": {
|
|
2681
|
+
"patterns": [
|
|
2682
|
+
{
|
|
2683
|
+
"include": "text.html.basic#attribute"
|
|
2684
|
+
},
|
|
2685
|
+
{
|
|
2686
|
+
"include": "$self"
|
|
2687
|
+
}
|
|
2688
|
+
]
|
|
2689
|
+
},
|
|
2690
|
+
"5": {
|
|
2691
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2692
|
+
}
|
|
2693
|
+
},
|
|
2694
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
2695
|
+
"endCaptures": {
|
|
2696
|
+
"0": {
|
|
2697
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
2698
|
+
},
|
|
2699
|
+
"1": {
|
|
2700
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2701
|
+
},
|
|
2702
|
+
"2": {
|
|
2703
|
+
"name": "entity.name.tag.wikitext"
|
|
2704
|
+
},
|
|
2705
|
+
"3": {
|
|
2706
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2707
|
+
}
|
|
2708
|
+
},
|
|
2709
|
+
"patterns": [
|
|
2710
|
+
{
|
|
2711
|
+
"begin": "(^|\\G)",
|
|
2712
|
+
"contentName": "meta.embedded.block.php",
|
|
2713
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
2714
|
+
"patterns": [
|
|
2715
|
+
{
|
|
2716
|
+
"include": "source.php"
|
|
2717
|
+
}
|
|
2718
|
+
]
|
|
2719
|
+
}
|
|
2720
|
+
]
|
|
2721
|
+
},
|
|
2722
|
+
"hl-powershell": {
|
|
2723
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:\"powershell\"|'powershell'|\"pwsh\"|'pwsh'|\"posh\"|'posh'|\"ps1\"|'ps1'|\"psm1\"|'psm1'))(?:\\s+[^>]+)?)\\s*(>)",
|
|
2724
|
+
"beginCaptures": {
|
|
2725
|
+
"0": {
|
|
2726
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
2727
|
+
},
|
|
2728
|
+
"1": {
|
|
2729
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2730
|
+
},
|
|
2731
|
+
"2": {
|
|
2732
|
+
"name": "entity.name.tag.wikitext"
|
|
2733
|
+
},
|
|
2734
|
+
"3": {
|
|
2735
|
+
"patterns": [
|
|
2736
|
+
{
|
|
2737
|
+
"include": "text.html.basic#attribute"
|
|
2738
|
+
},
|
|
2739
|
+
{
|
|
2740
|
+
"include": "$self"
|
|
2741
|
+
}
|
|
2742
|
+
]
|
|
2743
|
+
},
|
|
2744
|
+
"4": {
|
|
2745
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2746
|
+
}
|
|
2747
|
+
},
|
|
2748
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
2749
|
+
"endCaptures": {
|
|
2750
|
+
"0": {
|
|
2751
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
2752
|
+
},
|
|
2753
|
+
"1": {
|
|
2754
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2755
|
+
},
|
|
2756
|
+
"2": {
|
|
2757
|
+
"name": "entity.name.tag.wikitext"
|
|
2758
|
+
},
|
|
2759
|
+
"3": {
|
|
2760
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2761
|
+
}
|
|
2762
|
+
},
|
|
2763
|
+
"patterns": [
|
|
2764
|
+
{
|
|
2765
|
+
"begin": "(^|\\G)",
|
|
2766
|
+
"contentName": "meta.embedded.block.powershell",
|
|
2767
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
2768
|
+
"patterns": [
|
|
2769
|
+
{
|
|
2770
|
+
"include": "source.powershell"
|
|
2771
|
+
}
|
|
2772
|
+
]
|
|
2773
|
+
}
|
|
2774
|
+
]
|
|
2775
|
+
},
|
|
2776
|
+
"hl-pug": {
|
|
2777
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)(?:pug|jade)\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
2778
|
+
"beginCaptures": {
|
|
2779
|
+
"0": {
|
|
2780
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
2781
|
+
},
|
|
2782
|
+
"1": {
|
|
2783
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2784
|
+
},
|
|
2785
|
+
"2": {
|
|
2786
|
+
"name": "entity.name.tag.wikitext"
|
|
2787
|
+
},
|
|
2788
|
+
"3": {
|
|
2789
|
+
"patterns": [
|
|
2790
|
+
{
|
|
2791
|
+
"include": "text.html.basic#attribute"
|
|
2792
|
+
},
|
|
2793
|
+
{
|
|
2794
|
+
"include": "$self"
|
|
2795
|
+
}
|
|
2796
|
+
]
|
|
2797
|
+
},
|
|
2798
|
+
"5": {
|
|
2799
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2800
|
+
}
|
|
2801
|
+
},
|
|
2802
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
2803
|
+
"endCaptures": {
|
|
2804
|
+
"0": {
|
|
2805
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
2806
|
+
},
|
|
2807
|
+
"1": {
|
|
2808
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2809
|
+
},
|
|
2810
|
+
"2": {
|
|
2811
|
+
"name": "entity.name.tag.wikitext"
|
|
2812
|
+
},
|
|
2813
|
+
"3": {
|
|
2814
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2815
|
+
}
|
|
2816
|
+
},
|
|
2817
|
+
"patterns": [
|
|
2818
|
+
{
|
|
2819
|
+
"begin": "(^|\\G)",
|
|
2820
|
+
"contentName": "meta.embedded.block.pug",
|
|
2821
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
2822
|
+
"patterns": [
|
|
2823
|
+
{
|
|
2824
|
+
"include": "text.pug"
|
|
2825
|
+
}
|
|
2826
|
+
]
|
|
2827
|
+
}
|
|
2828
|
+
]
|
|
2829
|
+
},
|
|
2830
|
+
"hl-python": {
|
|
2831
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:\"python\"|'python'|\"py\"|'py'|\"sage\"|'sage'|\"python3\"|'python3'|\"py3\"|'py3'))(?:\\s+[^>]+)?)\\s*(>)",
|
|
2832
|
+
"beginCaptures": {
|
|
2833
|
+
"0": {
|
|
2834
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
2835
|
+
},
|
|
2836
|
+
"1": {
|
|
2837
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2838
|
+
},
|
|
2839
|
+
"2": {
|
|
2840
|
+
"name": "entity.name.tag.wikitext"
|
|
2841
|
+
},
|
|
2842
|
+
"3": {
|
|
2843
|
+
"patterns": [
|
|
2844
|
+
{
|
|
2845
|
+
"include": "text.html.basic#attribute"
|
|
2846
|
+
},
|
|
2847
|
+
{
|
|
2848
|
+
"include": "$self"
|
|
2849
|
+
}
|
|
2850
|
+
]
|
|
2851
|
+
},
|
|
2852
|
+
"4": {
|
|
2853
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2854
|
+
}
|
|
2855
|
+
},
|
|
2856
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
2857
|
+
"endCaptures": {
|
|
2858
|
+
"0": {
|
|
2859
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
2860
|
+
},
|
|
2861
|
+
"1": {
|
|
2862
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2863
|
+
},
|
|
2864
|
+
"2": {
|
|
2865
|
+
"name": "entity.name.tag.wikitext"
|
|
2866
|
+
},
|
|
2867
|
+
"3": {
|
|
2868
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2869
|
+
}
|
|
2870
|
+
},
|
|
2871
|
+
"patterns": [
|
|
2872
|
+
{
|
|
2873
|
+
"begin": "(^|\\G)",
|
|
2874
|
+
"contentName": "meta.embedded.block.python",
|
|
2875
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
2876
|
+
"patterns": [
|
|
2877
|
+
{
|
|
2878
|
+
"include": "source.python"
|
|
2879
|
+
}
|
|
2880
|
+
]
|
|
2881
|
+
}
|
|
2882
|
+
]
|
|
2883
|
+
},
|
|
2884
|
+
"hl-r": {
|
|
2885
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)(?:splus|s|r)\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
2886
|
+
"beginCaptures": {
|
|
2887
|
+
"0": {
|
|
2888
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
2889
|
+
},
|
|
2890
|
+
"1": {
|
|
2891
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2892
|
+
},
|
|
2893
|
+
"2": {
|
|
2894
|
+
"name": "entity.name.tag.wikitext"
|
|
2895
|
+
},
|
|
2896
|
+
"3": {
|
|
2897
|
+
"patterns": [
|
|
2898
|
+
{
|
|
2899
|
+
"include": "text.html.basic#attribute"
|
|
2900
|
+
},
|
|
2901
|
+
{
|
|
2902
|
+
"include": "$self"
|
|
2903
|
+
}
|
|
2904
|
+
]
|
|
2905
|
+
},
|
|
2906
|
+
"5": {
|
|
2907
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2908
|
+
}
|
|
2909
|
+
},
|
|
2910
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
2911
|
+
"endCaptures": {
|
|
2912
|
+
"0": {
|
|
2913
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
2914
|
+
},
|
|
2915
|
+
"1": {
|
|
2916
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2917
|
+
},
|
|
2918
|
+
"2": {
|
|
2919
|
+
"name": "entity.name.tag.wikitext"
|
|
2920
|
+
},
|
|
2921
|
+
"3": {
|
|
2922
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2923
|
+
}
|
|
2924
|
+
},
|
|
2925
|
+
"patterns": [
|
|
2926
|
+
{
|
|
2927
|
+
"begin": "(^|\\G)",
|
|
2928
|
+
"contentName": "meta.embedded.block.r",
|
|
2929
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
2930
|
+
"patterns": [
|
|
2931
|
+
{
|
|
2932
|
+
"include": "source.r"
|
|
2933
|
+
}
|
|
2934
|
+
]
|
|
2935
|
+
}
|
|
2936
|
+
]
|
|
2937
|
+
},
|
|
2938
|
+
"hl-ruby": {
|
|
2939
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)(?:ruby|rb|duby)\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
2940
|
+
"beginCaptures": {
|
|
2941
|
+
"0": {
|
|
2942
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
2943
|
+
},
|
|
2944
|
+
"1": {
|
|
2945
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2946
|
+
},
|
|
2947
|
+
"2": {
|
|
2948
|
+
"name": "entity.name.tag.wikitext"
|
|
2949
|
+
},
|
|
2950
|
+
"3": {
|
|
2951
|
+
"patterns": [
|
|
2952
|
+
{
|
|
2953
|
+
"include": "text.html.basic#attribute"
|
|
2954
|
+
},
|
|
2955
|
+
{
|
|
2956
|
+
"include": "$self"
|
|
2957
|
+
}
|
|
2958
|
+
]
|
|
2959
|
+
},
|
|
2960
|
+
"5": {
|
|
2961
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2962
|
+
}
|
|
2963
|
+
},
|
|
2964
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
2965
|
+
"endCaptures": {
|
|
2966
|
+
"0": {
|
|
2967
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
2968
|
+
},
|
|
2969
|
+
"1": {
|
|
2970
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
2971
|
+
},
|
|
2972
|
+
"2": {
|
|
2973
|
+
"name": "entity.name.tag.wikitext"
|
|
2974
|
+
},
|
|
2975
|
+
"3": {
|
|
2976
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
2977
|
+
}
|
|
2978
|
+
},
|
|
2979
|
+
"patterns": [
|
|
2980
|
+
{
|
|
2981
|
+
"begin": "(^|\\G)",
|
|
2982
|
+
"contentName": "meta.embedded.block.ruby",
|
|
2983
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
2984
|
+
"patterns": [
|
|
2985
|
+
{
|
|
2986
|
+
"include": "source.ruby"
|
|
2987
|
+
}
|
|
2988
|
+
]
|
|
2989
|
+
}
|
|
2990
|
+
]
|
|
2991
|
+
},
|
|
2992
|
+
"hl-rust": {
|
|
2993
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:\"rust\"|'rust'|\"rs\"|'rs'))(?:\\s+[^>]+)?)\\s*(>)",
|
|
2994
|
+
"beginCaptures": {
|
|
2995
|
+
"0": {
|
|
2996
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
2997
|
+
},
|
|
2998
|
+
"1": {
|
|
2999
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
3000
|
+
},
|
|
3001
|
+
"2": {
|
|
3002
|
+
"name": "entity.name.tag.wikitext"
|
|
3003
|
+
},
|
|
3004
|
+
"3": {
|
|
3005
|
+
"patterns": [
|
|
3006
|
+
{
|
|
3007
|
+
"include": "text.html.basic#attribute"
|
|
3008
|
+
},
|
|
3009
|
+
{
|
|
3010
|
+
"include": "$self"
|
|
3011
|
+
}
|
|
3012
|
+
]
|
|
3013
|
+
},
|
|
3014
|
+
"4": {
|
|
3015
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
3016
|
+
}
|
|
3017
|
+
},
|
|
3018
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
3019
|
+
"endCaptures": {
|
|
3020
|
+
"0": {
|
|
3021
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
3022
|
+
},
|
|
3023
|
+
"1": {
|
|
3024
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
3025
|
+
},
|
|
3026
|
+
"2": {
|
|
3027
|
+
"name": "entity.name.tag.wikitext"
|
|
3028
|
+
},
|
|
3029
|
+
"3": {
|
|
3030
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
3031
|
+
}
|
|
3032
|
+
},
|
|
3033
|
+
"patterns": [
|
|
3034
|
+
{
|
|
3035
|
+
"begin": "(^|\\G)",
|
|
3036
|
+
"contentName": null,
|
|
3037
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
3038
|
+
"patterns": [
|
|
3039
|
+
{
|
|
3040
|
+
"include": "source.rust"
|
|
3041
|
+
}
|
|
3042
|
+
]
|
|
3043
|
+
}
|
|
3044
|
+
]
|
|
3045
|
+
},
|
|
3046
|
+
"hl-scala": {
|
|
3047
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:\"scala\"|'scala'))(?:\\s+[^>]+)?)\\s*(>)",
|
|
3048
|
+
"beginCaptures": {
|
|
3049
|
+
"0": {
|
|
3050
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
3051
|
+
},
|
|
3052
|
+
"1": {
|
|
3053
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
3054
|
+
},
|
|
3055
|
+
"2": {
|
|
3056
|
+
"name": "entity.name.tag.wikitext"
|
|
3057
|
+
},
|
|
3058
|
+
"3": {
|
|
3059
|
+
"patterns": [
|
|
3060
|
+
{
|
|
3061
|
+
"include": "text.html.basic#attribute"
|
|
3062
|
+
},
|
|
3063
|
+
{
|
|
3064
|
+
"include": "$self"
|
|
3065
|
+
}
|
|
3066
|
+
]
|
|
3067
|
+
},
|
|
3068
|
+
"4": {
|
|
3069
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
3070
|
+
}
|
|
3071
|
+
},
|
|
3072
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
3073
|
+
"endCaptures": {
|
|
3074
|
+
"0": {
|
|
3075
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
3076
|
+
},
|
|
3077
|
+
"1": {
|
|
3078
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
3079
|
+
},
|
|
3080
|
+
"2": {
|
|
3081
|
+
"name": "entity.name.tag.wikitext"
|
|
3082
|
+
},
|
|
3083
|
+
"3": {
|
|
3084
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
3085
|
+
}
|
|
3086
|
+
},
|
|
3087
|
+
"patterns": [
|
|
3088
|
+
{
|
|
3089
|
+
"begin": "(^|\\G)",
|
|
3090
|
+
"contentName": "meta.embedded.block.scala",
|
|
3091
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
3092
|
+
"patterns": [
|
|
3093
|
+
{
|
|
3094
|
+
"include": "source.scala"
|
|
3095
|
+
}
|
|
3096
|
+
]
|
|
3097
|
+
}
|
|
3098
|
+
]
|
|
3099
|
+
},
|
|
3100
|
+
"hl-scss": {
|
|
3101
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:\"scss\"|'scss'))(?:\\s+[^>]+)?)\\s*(>)",
|
|
3102
|
+
"beginCaptures": {
|
|
3103
|
+
"0": {
|
|
3104
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
3105
|
+
},
|
|
3106
|
+
"1": {
|
|
3107
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
3108
|
+
},
|
|
3109
|
+
"2": {
|
|
3110
|
+
"name": "entity.name.tag.wikitext"
|
|
3111
|
+
},
|
|
3112
|
+
"3": {
|
|
3113
|
+
"patterns": [
|
|
3114
|
+
{
|
|
3115
|
+
"include": "text.html.basic#attribute"
|
|
3116
|
+
},
|
|
3117
|
+
{
|
|
3118
|
+
"include": "$self"
|
|
3119
|
+
}
|
|
3120
|
+
]
|
|
3121
|
+
},
|
|
3122
|
+
"4": {
|
|
3123
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
3124
|
+
}
|
|
3125
|
+
},
|
|
3126
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
3127
|
+
"endCaptures": {
|
|
3128
|
+
"0": {
|
|
3129
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
3130
|
+
},
|
|
3131
|
+
"1": {
|
|
3132
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
3133
|
+
},
|
|
3134
|
+
"2": {
|
|
3135
|
+
"name": "entity.name.tag.wikitext"
|
|
3136
|
+
},
|
|
3137
|
+
"3": {
|
|
3138
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
3139
|
+
}
|
|
3140
|
+
},
|
|
3141
|
+
"patterns": [
|
|
3142
|
+
{
|
|
3143
|
+
"begin": "(^|\\G)",
|
|
3144
|
+
"contentName": "meta.embedded.block.scss",
|
|
3145
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
3146
|
+
"patterns": [
|
|
3147
|
+
{
|
|
3148
|
+
"include": "source.css.scss"
|
|
3149
|
+
}
|
|
3150
|
+
]
|
|
3151
|
+
}
|
|
3152
|
+
]
|
|
3153
|
+
},
|
|
3154
|
+
"hl-shell": {
|
|
3155
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:\"bash\"|'bash'|\"sh\"|'sh'|\"ksh\"|'ksh'|\"zsh\"|'zsh'|\"shell\"|'shell'))(?:\\s+[^>]+)?)\\s*(>)",
|
|
3156
|
+
"beginCaptures": {
|
|
3157
|
+
"0": {
|
|
3158
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
3159
|
+
},
|
|
3160
|
+
"1": {
|
|
3161
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
3162
|
+
},
|
|
3163
|
+
"2": {
|
|
3164
|
+
"name": "entity.name.tag.wikitext"
|
|
3165
|
+
},
|
|
3166
|
+
"3": {
|
|
3167
|
+
"patterns": [
|
|
3168
|
+
{
|
|
3169
|
+
"include": "text.html.basic#attribute"
|
|
3170
|
+
},
|
|
3171
|
+
{
|
|
3172
|
+
"include": "$self"
|
|
3173
|
+
}
|
|
3174
|
+
]
|
|
3175
|
+
},
|
|
3176
|
+
"4": {
|
|
3177
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
3178
|
+
}
|
|
3179
|
+
},
|
|
3180
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
3181
|
+
"endCaptures": {
|
|
3182
|
+
"0": {
|
|
3183
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
3184
|
+
},
|
|
3185
|
+
"1": {
|
|
3186
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
3187
|
+
},
|
|
3188
|
+
"2": {
|
|
3189
|
+
"name": "entity.name.tag.wikitext"
|
|
3190
|
+
},
|
|
3191
|
+
"3": {
|
|
3192
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
3193
|
+
}
|
|
3194
|
+
},
|
|
3195
|
+
"patterns": [
|
|
3196
|
+
{
|
|
3197
|
+
"begin": "(^|\\G)",
|
|
3198
|
+
"contentName": "meta.embedded.block.shell",
|
|
3199
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
3200
|
+
"patterns": [
|
|
3201
|
+
{
|
|
3202
|
+
"include": "source.shell"
|
|
3203
|
+
}
|
|
3204
|
+
]
|
|
3205
|
+
}
|
|
3206
|
+
]
|
|
3207
|
+
},
|
|
3208
|
+
"hl-sql": {
|
|
3209
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)sql\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
3210
|
+
"beginCaptures": {
|
|
3211
|
+
"0": {
|
|
3212
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
3213
|
+
},
|
|
3214
|
+
"1": {
|
|
3215
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
3216
|
+
},
|
|
3217
|
+
"2": {
|
|
3218
|
+
"name": "entity.name.tag.wikitext"
|
|
3219
|
+
},
|
|
3220
|
+
"3": {
|
|
3221
|
+
"patterns": [
|
|
3222
|
+
{
|
|
3223
|
+
"include": "text.html.basic#attribute"
|
|
3224
|
+
},
|
|
3225
|
+
{
|
|
3226
|
+
"include": "$self"
|
|
3227
|
+
}
|
|
3228
|
+
]
|
|
3229
|
+
},
|
|
3230
|
+
"5": {
|
|
3231
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
3232
|
+
}
|
|
3233
|
+
},
|
|
3234
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
3235
|
+
"endCaptures": {
|
|
3236
|
+
"0": {
|
|
3237
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
3238
|
+
},
|
|
3239
|
+
"1": {
|
|
3240
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
3241
|
+
},
|
|
3242
|
+
"2": {
|
|
3243
|
+
"name": "entity.name.tag.wikitext"
|
|
3244
|
+
},
|
|
3245
|
+
"3": {
|
|
3246
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
3247
|
+
}
|
|
3248
|
+
},
|
|
3249
|
+
"patterns": [
|
|
3250
|
+
{
|
|
3251
|
+
"begin": "(^|\\G)",
|
|
3252
|
+
"contentName": "meta.embedded.block.sql",
|
|
3253
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
3254
|
+
"patterns": [
|
|
3255
|
+
{
|
|
3256
|
+
"include": "source.sql"
|
|
3257
|
+
}
|
|
3258
|
+
]
|
|
3259
|
+
}
|
|
3260
|
+
]
|
|
3261
|
+
},
|
|
3262
|
+
"hl-swift": {
|
|
3263
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:\"swift\"|'swift'))(?:\\s+[^>]+)?)\\s*(>)",
|
|
3264
|
+
"beginCaptures": {
|
|
3265
|
+
"0": {
|
|
3266
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
3267
|
+
},
|
|
3268
|
+
"1": {
|
|
3269
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
3270
|
+
},
|
|
3271
|
+
"2": {
|
|
3272
|
+
"name": "entity.name.tag.wikitext"
|
|
3273
|
+
},
|
|
3274
|
+
"3": {
|
|
3275
|
+
"patterns": [
|
|
3276
|
+
{
|
|
3277
|
+
"include": "text.html.basic#attribute"
|
|
3278
|
+
},
|
|
3279
|
+
{
|
|
3280
|
+
"include": "$self"
|
|
3281
|
+
}
|
|
3282
|
+
]
|
|
3283
|
+
},
|
|
3284
|
+
"4": {
|
|
3285
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
3286
|
+
}
|
|
3287
|
+
},
|
|
3288
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
3289
|
+
"endCaptures": {
|
|
3290
|
+
"0": {
|
|
3291
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
3292
|
+
},
|
|
3293
|
+
"1": {
|
|
3294
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
3295
|
+
},
|
|
3296
|
+
"2": {
|
|
3297
|
+
"name": "entity.name.tag.wikitext"
|
|
3298
|
+
},
|
|
3299
|
+
"3": {
|
|
3300
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
3301
|
+
}
|
|
3302
|
+
},
|
|
3303
|
+
"patterns": [
|
|
3304
|
+
{
|
|
3305
|
+
"begin": "(^|\\G)",
|
|
3306
|
+
"contentName": "meta.embedded.block.swift",
|
|
3307
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
3308
|
+
"patterns": [
|
|
3309
|
+
{
|
|
3310
|
+
"include": "source.swift"
|
|
3311
|
+
}
|
|
3312
|
+
]
|
|
3313
|
+
}
|
|
3314
|
+
]
|
|
3315
|
+
},
|
|
3316
|
+
"hl-ts": {
|
|
3317
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:\"typescript\"|'typescript'|\"ts\"|'ts'))(?:\\s+[^>]+)?)\\s*(>)",
|
|
3318
|
+
"beginCaptures": {
|
|
3319
|
+
"0": {
|
|
3320
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
3321
|
+
},
|
|
3322
|
+
"1": {
|
|
3323
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
3324
|
+
},
|
|
3325
|
+
"2": {
|
|
3326
|
+
"name": "entity.name.tag.wikitext"
|
|
3327
|
+
},
|
|
3328
|
+
"3": {
|
|
3329
|
+
"patterns": [
|
|
3330
|
+
{
|
|
3331
|
+
"include": "text.html.basic#attribute"
|
|
3332
|
+
},
|
|
3333
|
+
{
|
|
3334
|
+
"include": "$self"
|
|
3335
|
+
}
|
|
3336
|
+
]
|
|
3337
|
+
},
|
|
3338
|
+
"4": {
|
|
3339
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
3340
|
+
}
|
|
3341
|
+
},
|
|
3342
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
3343
|
+
"endCaptures": {
|
|
3344
|
+
"0": {
|
|
3345
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
3346
|
+
},
|
|
3347
|
+
"1": {
|
|
3348
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
3349
|
+
},
|
|
3350
|
+
"2": {
|
|
3351
|
+
"name": "entity.name.tag.wikitext"
|
|
3352
|
+
},
|
|
3353
|
+
"3": {
|
|
3354
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
3355
|
+
}
|
|
3356
|
+
},
|
|
3357
|
+
"patterns": [
|
|
3358
|
+
{
|
|
3359
|
+
"begin": "(^|\\G)",
|
|
3360
|
+
"contentName": "meta.embedded.block.ts",
|
|
3361
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
3362
|
+
"patterns": [
|
|
3363
|
+
{
|
|
3364
|
+
"include": "source.ts"
|
|
3365
|
+
}
|
|
3366
|
+
]
|
|
3367
|
+
}
|
|
3368
|
+
]
|
|
3369
|
+
},
|
|
3370
|
+
"hl-vb-net": {
|
|
3371
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)(?:vb\\.net|vbnet|lobas|oobas|sobas)\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
3372
|
+
"beginCaptures": {
|
|
3373
|
+
"0": {
|
|
3374
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
3375
|
+
},
|
|
3376
|
+
"1": {
|
|
3377
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
3378
|
+
},
|
|
3379
|
+
"2": {
|
|
3380
|
+
"name": "entity.name.tag.wikitext"
|
|
3381
|
+
},
|
|
3382
|
+
"3": {
|
|
3383
|
+
"patterns": [
|
|
3384
|
+
{
|
|
3385
|
+
"include": "text.html.basic#attribute"
|
|
3386
|
+
},
|
|
3387
|
+
{
|
|
3388
|
+
"include": "$self"
|
|
3389
|
+
}
|
|
3390
|
+
]
|
|
3391
|
+
},
|
|
3392
|
+
"5": {
|
|
3393
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
3394
|
+
}
|
|
3395
|
+
},
|
|
3396
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
3397
|
+
"endCaptures": {
|
|
3398
|
+
"0": {
|
|
3399
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
3400
|
+
},
|
|
3401
|
+
"1": {
|
|
3402
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
3403
|
+
},
|
|
3404
|
+
"2": {
|
|
3405
|
+
"name": "entity.name.tag.wikitext"
|
|
3406
|
+
},
|
|
3407
|
+
"3": {
|
|
3408
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
3409
|
+
}
|
|
3410
|
+
},
|
|
3411
|
+
"patterns": [
|
|
3412
|
+
{
|
|
3413
|
+
"begin": "(^|\\G)",
|
|
3414
|
+
"contentName": "meta.embedded.block.vb-net",
|
|
3415
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
3416
|
+
"patterns": [
|
|
3417
|
+
{
|
|
3418
|
+
"include": "source.asp.vb.net"
|
|
3419
|
+
}
|
|
3420
|
+
]
|
|
3421
|
+
}
|
|
3422
|
+
]
|
|
3423
|
+
},
|
|
3424
|
+
"hl-xml": {
|
|
3425
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)xml\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
3426
|
+
"beginCaptures": {
|
|
3427
|
+
"0": {
|
|
3428
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
3429
|
+
},
|
|
3430
|
+
"1": {
|
|
3431
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
3432
|
+
},
|
|
3433
|
+
"2": {
|
|
3434
|
+
"name": "entity.name.tag.wikitext"
|
|
3435
|
+
},
|
|
3436
|
+
"3": {
|
|
3437
|
+
"patterns": [
|
|
3438
|
+
{
|
|
3439
|
+
"include": "text.html.basic#attribute"
|
|
3440
|
+
},
|
|
3441
|
+
{
|
|
3442
|
+
"include": "$self"
|
|
3443
|
+
}
|
|
3444
|
+
]
|
|
3445
|
+
},
|
|
3446
|
+
"5": {
|
|
3447
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
3448
|
+
}
|
|
3449
|
+
},
|
|
3450
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
3451
|
+
"endCaptures": {
|
|
3452
|
+
"0": {
|
|
3453
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
3454
|
+
},
|
|
3455
|
+
"1": {
|
|
3456
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
3457
|
+
},
|
|
3458
|
+
"2": {
|
|
3459
|
+
"name": "entity.name.tag.wikitext"
|
|
3460
|
+
},
|
|
3461
|
+
"3": {
|
|
3462
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
3463
|
+
}
|
|
3464
|
+
},
|
|
3465
|
+
"patterns": [
|
|
3466
|
+
{
|
|
3467
|
+
"begin": "(^|\\G)",
|
|
3468
|
+
"contentName": "meta.embedded.block.xml",
|
|
3469
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
3470
|
+
"patterns": [
|
|
3471
|
+
{
|
|
3472
|
+
"include": "text.xml"
|
|
3473
|
+
}
|
|
3474
|
+
]
|
|
3475
|
+
}
|
|
3476
|
+
]
|
|
3477
|
+
},
|
|
3478
|
+
"hl-xslt": {
|
|
3479
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)xslt\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
3480
|
+
"beginCaptures": {
|
|
3481
|
+
"0": {
|
|
3482
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
3483
|
+
},
|
|
3484
|
+
"1": {
|
|
3485
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
3486
|
+
},
|
|
3487
|
+
"2": {
|
|
3488
|
+
"name": "entity.name.tag.wikitext"
|
|
3489
|
+
},
|
|
3490
|
+
"3": {
|
|
3491
|
+
"patterns": [
|
|
3492
|
+
{
|
|
3493
|
+
"include": "text.html.basic#attribute"
|
|
3494
|
+
},
|
|
3495
|
+
{
|
|
3496
|
+
"include": "$self"
|
|
3497
|
+
}
|
|
3498
|
+
]
|
|
3499
|
+
},
|
|
3500
|
+
"5": {
|
|
3501
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
3502
|
+
}
|
|
3503
|
+
},
|
|
3504
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
3505
|
+
"endCaptures": {
|
|
3506
|
+
"0": {
|
|
3507
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
3508
|
+
},
|
|
3509
|
+
"1": {
|
|
3510
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
3511
|
+
},
|
|
3512
|
+
"2": {
|
|
3513
|
+
"name": "entity.name.tag.wikitext"
|
|
3514
|
+
},
|
|
3515
|
+
"3": {
|
|
3516
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
3517
|
+
}
|
|
3518
|
+
},
|
|
3519
|
+
"patterns": [
|
|
3520
|
+
{
|
|
3521
|
+
"begin": "(^|\\G)",
|
|
3522
|
+
"contentName": "meta.embedded.block.xslt",
|
|
3523
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
3524
|
+
"patterns": [
|
|
3525
|
+
{
|
|
3526
|
+
"include": "text.xml.xsl"
|
|
3527
|
+
}
|
|
3528
|
+
]
|
|
3529
|
+
}
|
|
3530
|
+
]
|
|
3531
|
+
},
|
|
3532
|
+
"hl-yaml": {
|
|
3533
|
+
"begin": "(?i)(<)(syntaxhighlight)((?:\\s+[^>]+)?(?:\\s+lang=(?:(['\"]?)yaml\\4))(?:\\s+[^>]+)?)\\s*(>)",
|
|
3534
|
+
"beginCaptures": {
|
|
3535
|
+
"0": {
|
|
3536
|
+
"name": "meta.tag.metadata.start.wikitext"
|
|
3537
|
+
},
|
|
3538
|
+
"1": {
|
|
3539
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
3540
|
+
},
|
|
3541
|
+
"2": {
|
|
3542
|
+
"name": "entity.name.tag.wikitext"
|
|
3543
|
+
},
|
|
3544
|
+
"3": {
|
|
3545
|
+
"patterns": [
|
|
3546
|
+
{
|
|
3547
|
+
"include": "text.html.basic#attribute"
|
|
3548
|
+
},
|
|
3549
|
+
{
|
|
3550
|
+
"include": "$self"
|
|
3551
|
+
}
|
|
3552
|
+
]
|
|
3553
|
+
},
|
|
3554
|
+
"5": {
|
|
3555
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
3556
|
+
}
|
|
3557
|
+
},
|
|
3558
|
+
"end": "(?i)(</)(syntaxhighlight)\\s*(>)",
|
|
3559
|
+
"endCaptures": {
|
|
3560
|
+
"0": {
|
|
3561
|
+
"name": "meta.tag.metadata.end.wikitext"
|
|
3562
|
+
},
|
|
3563
|
+
"1": {
|
|
3564
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
3565
|
+
},
|
|
3566
|
+
"2": {
|
|
3567
|
+
"name": "entity.name.tag.wikitext"
|
|
3568
|
+
},
|
|
3569
|
+
"3": {
|
|
3570
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
3571
|
+
}
|
|
3572
|
+
},
|
|
3573
|
+
"patterns": [
|
|
3574
|
+
{
|
|
3575
|
+
"begin": "(^|\\G)",
|
|
3576
|
+
"contentName": "meta.embedded.block.yaml",
|
|
3577
|
+
"end": "(?i)(?=</syntaxhighlight\\s*>)",
|
|
3578
|
+
"patterns": [
|
|
3579
|
+
{
|
|
3580
|
+
"include": "source.yaml"
|
|
3581
|
+
}
|
|
3582
|
+
]
|
|
3583
|
+
}
|
|
3584
|
+
]
|
|
3585
|
+
}
|
|
3586
|
+
}
|
|
3587
|
+
},
|
|
3588
|
+
"wiki-self-closed-tags": {
|
|
3589
|
+
"captures": {
|
|
3590
|
+
"1": {
|
|
3591
|
+
"name": "punctuation.definition.tag.begin.wikitext"
|
|
3592
|
+
},
|
|
3593
|
+
"2": {
|
|
3594
|
+
"name": "entity.name.tag.wikitext"
|
|
3595
|
+
},
|
|
3596
|
+
"3": {
|
|
3597
|
+
"patterns": [
|
|
3598
|
+
{
|
|
3599
|
+
"include": "text.html.basic#attribute"
|
|
3600
|
+
},
|
|
3601
|
+
{
|
|
3602
|
+
"include": "$self"
|
|
3603
|
+
}
|
|
3604
|
+
]
|
|
3605
|
+
},
|
|
3606
|
+
"4": {
|
|
3607
|
+
"name": "punctuation.definition.tag.end.wikitext"
|
|
3608
|
+
}
|
|
3609
|
+
},
|
|
3610
|
+
"match": "(?i)(<)(templatestyles|ref|nowiki|onlyinclude|includeonly)(\\s+[^>]+)?\\s*(/>)",
|
|
3611
|
+
"name": "meta.tag.metedata.void.wikitext"
|
|
3612
|
+
}
|
|
3613
|
+
}
|
|
3614
|
+
}
|
|
3615
|
+
}
|
|
3616
|
+
}
|
|
3617
|
+
},
|
|
3618
|
+
"scopeName": "source.wikitext"
|
|
3619
|
+
}
|