]>
luflow.net public git repositories - flow-web.git/blob - static/highlight/es/languages/dsconfig.js
1 /*! `dsconfig` grammar compiled for Highlight.js 11.11.1 */
2 var hljsGrammar
= (function () {
7 Description: dsconfig batch configuration language for LDAP directory servers
8 Contributors: Jacob Childress <jacobc@gmail.com>
9 Category: enterprise, config
12 /** @type LanguageFn */
13 function dsconfig(hljs
) {
14 const QUOTED_PROPERTY
= {
19 const APOS_PROPERTY
= {
24 const UNQUOTED_PROPERTY
= {
26 begin: /[\w\-?]+:\w+/,
30 const VALUELESS_PROPERTY
= {
48 className: 'built_in',
49 begin: /(list|create|get|set|delete)-(\w+)/,
52 illegal: '!@#$%^&*()',
56 className: 'built_in',
65 hljs
.HASH_COMMENT_MODE
74 export default hljsGrammar
;