UNPKG

@observablehq/highlight.js

Version:

Syntax highlighting with language autodetection.

31 lines (28 loc) 638 B
/* Language: LDIF Contributors: Jacob Childress <jacobc@gmail.com> Category: enterprise, config */ define([], (...$requiredLanguages) => 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 ] }; } )