UNPKG

reprism

Version:

Modular Syntax highlighting for the web

17 lines (16 loc) 324 B
export default { language: 'ini', init: Prism => { Prism.languages.ini = { comment: /^[ \t]*;.*$/m, selector: /^[ \t]*\[.*?\]/m, constant: /^[ \t]*[^\s=]+?(?=[ \t]*=)/m, 'attr-value': { pattern: /=.*/, inside: { punctuation: /^[=]/, }, }, } }, }