Blame view

bower_components/prism/components/prism-ini.js 207 Bytes
73bcce88   luigser   COMPONENTS
1
2
3
4
5
6
7
8
9
10
11
  Prism.languages.ini= {

  	'comment': /^\s*;.*$/m,

  	'important': /\[.*?\]/m,

  	'constant': /^\s*[^\s=]+?(?=[ \t]*=)/m,

  	'attr-value': {

  		pattern: /=.*/m,

  		inside: {

  			'punctuation': /^[=]/

  		}

  	}

  };