sterzycom/assets/js/components/prism-ini.js

11 lines
208 B
JavaScript
Raw Normal View History

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