1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/highlight.js/lib/languages/dust.js

46 lines
979 B
JavaScript
Raw Normal View History

2024-01-16 21:26:16 +08:00
/*
Language: Dust
Requires: xml.js
Author: Michael Allen <michael.allen@benefitfocus.com>
Description: Matcher for dust.js templates.
Website: https://www.dustjs.com
Category: template
*/
/** @type LanguageFn */
function dust(hljs) {
const EXPRESSION_KEYWORDS = 'if eq ne lt lte gt gte select default math sep';
2023-12-18 13:12:25 +08:00
return {
2024-01-16 21:26:16 +08:00
name: 'Dust',
2023-12-18 13:12:25 +08:00
aliases: ['dst'],
case_insensitive: true,
subLanguage: 'xml',
contains: [
{
className: 'template-tag',
2024-01-16 21:26:16 +08:00
begin: /\{[#\/]/,
end: /\}/,
illegal: /;/,
contains: [{
className: 'name',
begin: /[a-zA-Z\.-]+/,
starts: {
endsWithParent: true,
relevance: 0,
contains: [hljs.QUOTE_STRING_MODE]
2023-12-18 13:12:25 +08:00
}
2024-01-16 21:26:16 +08:00
}]
2023-12-18 13:12:25 +08:00
},
{
className: 'template-variable',
2024-01-16 21:26:16 +08:00
begin: /\{/,
end: /\}/,
illegal: /;/,
2023-12-18 13:12:25 +08:00
keywords: EXPRESSION_KEYWORDS
}
]
};
2024-01-16 21:26:16 +08:00
}
module.exports = dust;