08-27-周三_17-09-29
This commit is contained in:
28
node_modules/highlight.js/lib/languages/bnf.js
generated
vendored
Normal file
28
node_modules/highlight.js/lib/languages/bnf.js
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
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
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
};
|
||||
};
|
Reference in New Issue
Block a user