aboutsummaryrefslogtreecommitdiff
path: root/node_modules/prismjs/components/prism-properties.js
blob: abcfae4b9e6d90a4c76d75cd8590ccde79124cb8 (plain)
1
2
3
4
5
6
7
8
9
Prism.languages.properties = {
	'comment': /^[ \t]*[#!].*$/m,
	'attr-value': {
		pattern: /(^[ \t]*(?:\\(?:\r\n|[\s\S])|[^\\\s:=])+?(?: *[=:] *| ))(?:\\(?:\r\n|[\s\S])|[^\\\r\n])+/m,
		lookbehind: true
	},
	'attr-name': /^[ \t]*(?:\\(?:\r\n|[\s\S])|[^\\\s:=])+?(?= *[=:] *| )/m,
	'punctuation': /[=:]/
};