UNPKG

567 BJavaScriptView Raw
1/*
2Language: LDIF
3Contributors: Jacob Childress <jacobc@gmail.com>
4Category: enterprise, config
5Website: https://en.wikipedia.org/wiki/LDAP_Data_Interchange_Format
6*/
7
8/** @type LanguageFn */
9function ldif(hljs) {
10 return {
11 name: 'LDIF',
12 contains: [
13 {
14 className: 'attribute',
15 match: '^dn(?=:)',
16 relevance: 10
17 },
18 {
19 className: 'attribute',
20 match: '^\\w+(?=:)'
21 },
22 {
23 className: 'literal',
24 match: '^-'
25 },
26 hljs.HASH_COMMENT_MODE
27 ]
28 };
29}
30
31module.exports = ldif;