Sha256: 06b3256389c6edfcf63be1ed9ad7ce2c12c23eabfc198e224a95ebebef7c31f7

Contents?: true

Size: 853 Bytes

Versions: 7

Compression:

Stored size: 853 Bytes

Contents

Prism.languages.clike = {
	'comment': [
		{
			pattern: /(^|[^\\])\/\*[\w\W]*?\*\//g,
			lookbehind: true
		},
		{
			pattern: /(^|[^\\:])\/\/.*?(\r?\n|$)/g,
			lookbehind: true
		}
	],
	'string': /("|')(\\?.)*?\1/g,
	'class-name': {
		pattern: /((?:(?:class|interface|extends|implements|trait|instanceof|new)\s+)|(?:catch\s+\())[a-z0-9_\.\\]+/ig,
		lookbehind: true,
		inside: {
			punctuation: /(\.|\\)/
		}
	},
	'keyword': /\b(if|else|while|do|for|return|in|instanceof|function|new|try|throw|catch|finally|null|break|continue)\b/g,
	'boolean': /\b(true|false)\b/g,
	'function': {
		pattern: /[a-z0-9_]+\(/ig,
		inside: {
			punctuation: /\(/
		}
	},
	'number': /\b-?(0x[\dA-Fa-f]+|\d*\.?\d+([Ee]-?\d+)?)\b/g,
	'operator': /[-+]{1,2}|!|<=?|>=?|={1,3}|&{1,2}|\|?\||\?|\*|\/|\~|\^|\%/g,
	'ignore': /&(lt|gt|amp);/gi,
	'punctuation': /[{}[\];(),.:]/g
};

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
hyhyhy-1.0.0 lib/hyhyhy/structure/_includes/prism/components/prism-clike.js
hyhyhy-0.0.9 lib/hyhyhy/structure/_includes/prism/components/prism-clike.js
hyhyhy-0.0.8 lib/hyhyhy/structure/_includes/prism/components/prism-clike.js
hyhyhy-0.0.7 lib/hyhyhy/structure/_includes/prism/components/prism-clike.js
hyhyhy-0.0.6 lib/hyhyhy/structure/_includes/prism/components/prism-clike.js
hyhyhy-0.0.5 lib/hyhyhy/structure/_includes/prism/components/prism-clike.js
hyhyhy-0.0.4 lib/hyhyhy/structure/_includes/prism/components/prism-clike.js