hexo/node_modules/highlight.js/es/languages/bnf.js

39 lines
756 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
Language: BackusNaur Form
Website: https://en.wikipedia.org/wiki/BackusNaur_form
Author: Oleg Efimov <efimovov@gmail.com>
*/
/** @type LanguageFn */
function bnf(hljs) {
return {
name: 'BackusNaur Form',
contains: [
// Attribute
{
className: 'attribute',
begin: /</,
end: />/
},
// Specific
{
begin: /::=/,
end: /$/,
contains: [
{
begin: /</,
end: />/
},
// Common
hljs.C_LINE_COMMENT_MODE,
hljs.C_BLOCK_COMMENT_MODE,
hljs.APOS_STRING_MODE,
hljs.QUOTE_STRING_MODE
]
}
]
};
}
export { bnf as default };