mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-27 02:34:52 -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>
31 lines
756 B
JavaScript
31 lines
756 B
JavaScript
module.exports = function(hljs) {
|
|
var EXPRESSION_KEYWORDS = 'if eq ne lt lte gt gte select default math sep';
|
|
return {
|
|
aliases: ['dst'],
|
|
case_insensitive: true,
|
|
subLanguage: 'xml',
|
|
contains: [
|
|
{
|
|
className: 'template-tag',
|
|
begin: /\{[#\/]/, end: /\}/, illegal: /;/,
|
|
contains: [
|
|
{
|
|
className: 'name',
|
|
begin: /[a-zA-Z\.-]+/,
|
|
starts: {
|
|
endsWithParent: true, relevance: 0,
|
|
contains: [
|
|
hljs.QUOTE_STRING_MODE
|
|
]
|
|
}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
className: 'template-variable',
|
|
begin: /\{/, end: /\}/, illegal: /;/,
|
|
keywords: EXPRESSION_KEYWORDS
|
|
}
|
|
]
|
|
};
|
|
}; |