]>
luflow.net public git repositories - flow-web.git/blob - static/highlight/languages/dsconfig.js
1 /*! `dsconfig` grammar compiled for Highlight.js 11.11.1 */
3 var hljsGrammar
= (function () {
8 Description: dsconfig batch configuration language for LDAP directory servers
9 Contributors: Jacob Childress <jacobc@gmail.com>
10 Category: enterprise, config
13 /** @type LanguageFn */
14 function dsconfig(hljs
) {
15 const QUOTED_PROPERTY
= {
20 const APOS_PROPERTY
= {
25 const UNQUOTED_PROPERTY
= {
27 begin: /[\w\-?]+:\w+/,
31 const VALUELESS_PROPERTY
= {
49 className: 'built_in',
50 begin: /(list|create|get|set|delete)-(\w+)/,
53 illegal: '!@#$%^&*()',
57 className: 'built_in',
66 hljs
.HASH_COMMENT_MODE
75 hljs
.registerLanguage('dsconfig', hljsGrammar
);