You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
618 B
26 lines
618 B
(function (Prism) {
|
|
|
|
Prism.languages.ejs = {
|
|
'delimiter': {
|
|
pattern: /^<%[-_=]?|[-_]?%>$/,
|
|
alias: 'punctuation'
|
|
},
|
|
'comment': /^#[\s\S]*/,
|
|
'language-javascript': {
|
|
pattern: /[\s\S]+/,
|
|
inside: Prism.languages.javascript
|
|
}
|
|
};
|
|
|
|
Prism.hooks.add('before-tokenize', function (env) {
|
|
var ejsPattern = /<%(?!%)[\s\S]+?%>/g;
|
|
Prism.languages['markup-templating'].buildPlaceholders(env, 'ejs', ejsPattern);
|
|
});
|
|
|
|
Prism.hooks.add('after-tokenize', function (env) {
|
|
Prism.languages['markup-templating'].tokenizePlaceholders(env, 'ejs');
|
|
});
|
|
|
|
Prism.languages.eta = Prism.languages.ejs;
|
|
|
|
}(Prism));
|
|
|