mindoc/static/editor.md/lib/highlight/languages/ldif.js
lifei6671 327d6fb8d8 feat:1、修复无数据时报错的问题。
2、新增自定义代码着色格式
3、新增自动加载配置文件
2018-08-07 17:19:56 +08:00

28 lines
568 B
Go

/*
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
]
};
}