CS-Notes/docs/_style/prism-master/components/prism-ini.js
2018-12-19 14:09:39 +08:00

11 lines
208 B
JavaScript

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