katoikia-app/web-ui/web-react/node_modules/prismjs/components/prism-ini.js

11 lines
208 B
JavaScript
Raw Normal View History

2022-07-06 04:15:11 +00:00
Prism.languages.ini= {
'comment': /^[ \t]*;.*$/m,
'selector': /^[ \t]*\[.*?\]/m,
'constant': /^[ \t]*[^\s=]+?(?=[ \t]*=)/m,
'attr-value': {
pattern: /=.*/,
inside: {
'punctuation': /^[=]/
}
}
};