-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
tt2.js
62 lines (60 loc) · 2 KB
/
tt2.js
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
// @ts-nocheck
import refractorClike from './clike.js'
import refractorMarkupTemplating from './markup-templating.js'
tt2.displayName = 'tt2'
tt2.aliases = []
/** @type {import('../core.js').Syntax} */
export default function tt2(Prism) {
Prism.register(refractorClike)
Prism.register(refractorMarkupTemplating)
;(function (Prism) {
Prism.languages.tt2 = Prism.languages.extend('clike', {
comment: /#.*|\[%#[\s\S]*?%\]/,
keyword:
/\b(?:BLOCK|CALL|CASE|CATCH|CLEAR|DEBUG|DEFAULT|ELSE|ELSIF|END|FILTER|FINAL|FOREACH|GET|IF|IN|INCLUDE|INSERT|LAST|MACRO|META|NEXT|PERL|PROCESS|RAWPERL|RETURN|SET|STOP|SWITCH|TAGS|THROW|TRY|UNLESS|USE|WHILE|WRAPPER)\b/,
punctuation: /[[\]{},()]/
})
Prism.languages.insertBefore('tt2', 'number', {
operator: /=[>=]?|!=?|<=?|>=?|&&|\|\|?|\b(?:and|not|or)\b/,
variable: {
pattern: /\b[a-z]\w*(?:\s*\.\s*(?:\d+|\$?[a-z]\w*))*\b/i
}
})
Prism.languages.insertBefore('tt2', 'keyword', {
delimiter: {
pattern: /^(?:\[%|%%)-?|-?%\]$/,
alias: 'punctuation'
}
})
Prism.languages.insertBefore('tt2', 'string', {
'single-quoted-string': {
pattern: /'[^\\']*(?:\\[\s\S][^\\']*)*'/,
greedy: true,
alias: 'string'
},
'double-quoted-string': {
pattern: /"[^\\"]*(?:\\[\s\S][^\\"]*)*"/,
greedy: true,
alias: 'string',
inside: {
variable: {
pattern: /\$(?:[a-z]\w*(?:\.(?:\d+|\$?[a-z]\w*))*)/i
}
}
}
})
// The different types of TT2 strings "replace" the C-like standard string
delete Prism.languages.tt2.string
Prism.hooks.add('before-tokenize', function (env) {
var tt2Pattern = /\[%[\s\S]+?%\]/g
Prism.languages['markup-templating'].buildPlaceholders(
env,
'tt2',
tt2Pattern
)
})
Prism.hooks.add('after-tokenize', function (env) {
Prism.languages['markup-templating'].tokenizePlaceholders(env, 'tt2')
})
})(Prism)
}