mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
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.
24 lines
571 B
24 lines
571 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));
|
|
|