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

39 lines
713 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/*
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
]
}
]
};
}
module.exports = bnf;