prism-ini.js 212 B

1234567891011
  1. Prism.languages.ini= {
  2. 'comment': /^[ \t]*[;#].*$/m,
  3. 'selector': /^[ \t]*\[.*?\]/m,
  4. 'constant': /^[ \t]*[^\s=]+?(?=[ \t]*=)/m,
  5. 'attr-value': {
  6. pattern: /=.*/,
  7. inside: {
  8. 'punctuation': /^[=]/
  9. }
  10. }
  11. };