diff options
Diffstat (limited to 'node_modules/highlight.js/lib/languages/bnf.js')
-rw-r--r-- | node_modules/highlight.js/lib/languages/bnf.js | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/node_modules/highlight.js/lib/languages/bnf.js b/node_modules/highlight.js/lib/languages/bnf.js deleted file mode 100644 index 08285f653..000000000 --- a/node_modules/highlight.js/lib/languages/bnf.js +++ /dev/null @@ -1,28 +0,0 @@ -module.exports = function(hljs){ - return { - contains: [ - // Attribute - { - className: 'attribute', - begin: /</, end: />/ - }, - // Specific - { - begin: /::=/, - starts: { - end: /$/, - contains: [ - { - begin: /</, end: />/ - }, - // Common - hljs.C_LINE_COMMENT_MODE, - hljs.C_BLOCK_COMMENT_MODE, - hljs.APOS_STRING_MODE, - hljs.QUOTE_STRING_MODE - ] - } - } - ] - }; -};
\ No newline at end of file |