mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-24 01:04:49 -06:00
fa9ae9437c
The gitbook install has been incredibly flaky due to it's dependency on npm. This commit simply vendors the node_modules so that each time we build the site the process doesn't have to re-run gitbook install. Signed-off-by: Torin Sandall <torinsandall@gmail.com>
33 lines
895 B
JavaScript
33 lines
895 B
JavaScript
module.exports = function(hljs) {
|
|
var BUILT_INS = {'builtin-name': 'each in with if else unless bindattr action collection debugger log outlet template unbound view yield'};
|
|
return {
|
|
aliases: ['hbs', 'html.hbs', 'html.handlebars'],
|
|
case_insensitive: true,
|
|
subLanguage: 'xml',
|
|
contains: [
|
|
hljs.COMMENT('{{!(--)?', '(--)?}}'),
|
|
{
|
|
className: 'template-tag',
|
|
begin: /\{\{[#\/]/, end: /\}\}/,
|
|
contains: [
|
|
{
|
|
className: 'name',
|
|
begin: /[a-zA-Z\.-]+/,
|
|
keywords: BUILT_INS,
|
|
starts: {
|
|
endsWithParent: true, relevance: 0,
|
|
contains: [
|
|
hljs.QUOTE_STRING_MODE
|
|
]
|
|
}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
className: 'template-variable',
|
|
begin: /\{\{/, end: /\}\}/,
|
|
keywords: BUILT_INS
|
|
}
|
|
]
|
|
};
|
|
}; |