mirror of
https://github.com/mindoc-org/mindoc.git
synced 2026-02-27 17:03:57 +08:00
搭建框架
This commit is contained in:
33
static/highlight/languages/bnf.js
Normal file
33
static/highlight/languages/bnf.js
Normal file
@@ -0,0 +1,33 @@
|
||||
/*
|
||||
Language: Backus–Naur Form
|
||||
Author: Oleg Efimov <efimovov@gmail.com>
|
||||
*/
|
||||
|
||||
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