mirror of
https://github.com/mindoc-org/mindoc.git
synced 2026-02-27 17:03:57 +08:00
搭建框架
This commit is contained in:
27
static/highlight/languages/ldif.js
Normal file
27
static/highlight/languages/ldif.js
Normal file
@@ -0,0 +1,27 @@
|
||||
/*
|
||||
Language: LDIF
|
||||
Contributors: Jacob Childress <jacobc@gmail.com>
|
||||
Category: enterprise, config
|
||||
*/
|
||||
function(hljs) {
|
||||
return {
|
||||
contains: [
|
||||
{
|
||||
className: 'attribute',
|
||||
begin: '^dn', end: ': ', excludeEnd: true,
|
||||
starts: {end: '$', relevance: 0},
|
||||
relevance: 10
|
||||
},
|
||||
{
|
||||
className: 'attribute',
|
||||
begin: '^\\w', end: ': ', excludeEnd: true,
|
||||
starts: {end: '$', relevance: 0}
|
||||
},
|
||||
{
|
||||
className: 'literal',
|
||||
begin: '^-', end: '$'
|
||||
},
|
||||
hljs.HASH_COMMENT_MODE
|
||||
]
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user