123456789101112131415161718192021222324252627 |
- /*
- Language: LDIF
- Contributors: Jacob Childress <[email protected]>
- 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
- ]
- };
- }
|