Blame view

bower_components/prism/components/prism-ini.js 201 Bytes
eb240478   Luigi Serra   public room cards...
1
2
3
4
5
6
7
8
9
10
  Prism.languages.ini= {
  	'comment': /^[ \t]*;.*$/m,
  	'important': /\[.*?\]/,
  	'constant': /^[ \t]*[^\s=]+?(?=[ \t]*=)/m,
  	'attr-value': {
  		pattern: /=.*/,
  		inside: {
  			'punctuation': /^[=]/
  		}
  	}
73bcce88   luigser   COMPONENTS
11
  };