Files
docs/node_modules/prismjs/components/prism-editorconfig.js
yinxue 9e1b8bdc9d
Some checks failed
CI Pipeline / build (push) Failing after 3m23s
first-commit
2025-08-27 14:05:33 +08:00

27 lines
549 B
JavaScript

Prism.languages.editorconfig = {
// https://editorconfig-specification.readthedocs.io
'comment': /[;#].*/,
'section': {
pattern: /(^[ \t]*)\[.+\]/m,
lookbehind: true,
alias: 'selector',
inside: {
'regex': /\\\\[\[\]{},!?.*]/, // Escape special characters with '\\'
'operator': /[!?]|\.\.|\*{1,2}/,
'punctuation': /[\[\]{},]/
}
},
'key': {
pattern: /(^[ \t]*)[^\s=]+(?=[ \t]*=)/m,
lookbehind: true,
alias: 'attr-name'
},
'value': {
pattern: /=.*/,
alias: 'attr-value',
inside: {
'punctuation': /^=/
}
}
};