1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
!(function (t) {
var n = t.util.clone(t.languages.javascript),
e = '(?:\\{<S>*\\.{3}(?:[^{}]|<BRACES>)*\\})';
function a(t, n) {
return (
(t = t
.replace(/<S>/g, function () {
return '(?:\\s|//.*(?!.)|/\\*(?:[^*]|\\*(?!/))\\*/)';
})
.replace(/<BRACES>/g, function () {
return '(?:\\{(?:\\{(?:\\{[^{}]*\\}|[^{}])*\\}|[^{}])*\\})';
})
.replace(/<SPREAD>/g, function () {
return e;
})),
RegExp(t, n)
);
}
(e = a(e).source),
(t.languages.jsx = t.languages.extend('markup', n)),
(t.languages.jsx.tag.pattern = a(
'</?(?:[\\w.:-]+(?:<S>+(?:[\\w.:$-]+(?:=(?:"(?:\\\\[^]|[^\\\\"])*"|\'(?:\\\\[^]|[^\\\\\'])*\'|[^\\s{\'"/>=]+|<BRACES>))?|<SPREAD>))*<S>*/?)?>'
)),
(t.languages.jsx.tag.inside.tag.pattern = /^<\/?[^\s>\/]*/),
(t.languages.jsx.tag.inside['attr-value'].pattern =
/=(?!\{)(?:"(?:\\[\s\S]|[^\\"])*"|'(?:\\[\s\S]|[^\\'])*'|[^\s'">]+)/),
(t.languages.jsx.tag.inside.tag.inside['class-name'] =
/^[A-Z]\w*(?:\.[A-Z]\w*)*$/),
(t.languages.jsx.tag.inside.comment = n.comment),
t.languages.insertBefore(
'inside',
'attr-name',
{ spread: { pattern: a('<SPREAD>'), inside: t.languages.jsx } },
t.languages.jsx.tag
),
t.languages.insertBefore(
'inside',
'special-attr',
{
script: {
pattern: a('=<BRACES>'),
alias: 'language-javascript',
inside: {
'script-punctuation': { pattern: /^=(?=\{)/, alias: 'punctuation' },
rest: t.languages.jsx,
},
},
},
t.languages.jsx.tag
);
var s = function (t) {
return t
? 'string' == typeof t
? t
: 'string' == typeof t.content
? t.content
: t.content.map(s).join('')
: '';
},
g = function (n) {
for (var e = [], a = 0; a < n.length; a++) {
var o = n[a],
i = !1;
if (
('string' != typeof o &&
('tag' === o.type && o.content[0] && 'tag' === o.content[0].type
? '</' === o.content[0].content[0].content
? e.length > 0 &&
e[e.length - 1].tagName === s(o.content[0].content[1]) &&
e.pop()
: '/>' === o.content[o.content.length - 1].content ||
e.push({
tagName: s(o.content[0].content[1]),
openedBraces: 0,
})
: e.length > 0 && 'punctuation' === o.type && '{' === o.content
? e[e.length - 1].openedBraces++
: e.length > 0 &&
e[e.length - 1].openedBraces > 0 &&
'punctuation' === o.type &&
'}' === o.content
? e[e.length - 1].openedBraces--
: (i = !0)),
(i || 'string' == typeof o) &&
e.length > 0 &&
0 === e[e.length - 1].openedBraces)
) {
var r = s(o);
a < n.length - 1 &&
('string' == typeof n[a + 1] || 'plain-text' === n[a + 1].type) &&
((r += s(n[a + 1])), n.splice(a + 1, 1)),
a > 0 &&
('string' == typeof n[a - 1] || 'plain-text' === n[a - 1].type) &&
((r = s(n[a - 1]) + r), n.splice(a - 1, 1), a--),
(n[a] = new t.Token('plain-text', r, null, r));
}
o.content && 'string' != typeof o.content && g(o.content);
}
};
t.hooks.add('after-tokenize', function (t) {
('jsx' !== t.language && 'tsx' !== t.language) || g(t.tokens);
});
})(Prism);
|