Blame view

bower_components/prism/components/prism-sass.js 1.69 KB
73bcce88   luigser   COMPONENTS
1
2
3
  (function(Prism) {
  	Prism.languages.sass = Prism.languages.extend('css', {
  		// Sass comments don't need to be closed, only indented
eb240478   Luigi Serra   public room cards...
4
5
6
7
  		'comment': {
  			pattern: /^([ \t]*)\/[\/*].*(?:(?:\r?\n|\r)\1[ \t]+.+)*/m,
  			lookbehind: true
  		}
73bcce88   luigser   COMPONENTS
8
9
10
11
12
13
14
15
  	});
  
  	Prism.languages.insertBefore('sass', 'atrule', {
  		// We want to consume the whole line
  		'atrule-line': {
  			// Includes support for = and + shortcuts
  			pattern: /^(?:[ \t]*)[@+=].+/m,
  			inside: {
eb240478   Luigi Serra   public room cards...
16
  				'atrule': /(?:@[\w-]+|[+=])/m
73bcce88   luigser   COMPONENTS
17
18
19
20
21
22
23
  			}
  		}
  	});
  	delete Prism.languages.sass.atrule;
  
  
  	var variable = /((\$[-_\w]+)|(#\{\$[-_\w]+\}))/i;
eb240478   Luigi Serra   public room cards...
24
25
26
27
28
29
30
  	var operator = [
  		/[+*\/%]|[=!]=|<=?|>=?|\b(?:and|or|not)\b/,
  		{
  			pattern: /(\s+)-(?=\s)/,
  			lookbehind: true
  		}
  	];
73bcce88   luigser   COMPONENTS
31
32
33
34
  
  	Prism.languages.insertBefore('sass', 'property', {
  		// We want to consume the whole line
  		'variable-line': {
eb240478   Luigi Serra   public room cards...
35
  			pattern: /^[ \t]*\$.+/m,
73bcce88   luigser   COMPONENTS
36
37
38
39
40
41
42
43
  			inside: {
  				'punctuation': /:/,
  				'variable': variable,
  				'operator': operator
  			}
  		},
  		// We want to consume the whole line
  		'property-line': {
eb240478   Luigi Serra   public room cards...
44
  			pattern: /^[ \t]*(?:[^:\s]+ *:.*|:[^:\s]+.*)/m,
73bcce88   luigser   COMPONENTS
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
  			inside: {
  				'property': [
  					/[^:\s]+(?=\s*:)/,
  					{
  						pattern: /(:)[^:\s]+/,
  						lookbehind: true
  					}
  				],
  				'punctuation': /:/,
  				'variable': variable,
  				'operator': operator,
  				'important': Prism.languages.sass.important
  			}
  		}
  	});
  	delete Prism.languages.sass.property;
  	delete Prism.languages.sass.important;
  
  	// Now that whole lines for other patterns are consumed,
  	// what's left should be selectors
  	delete Prism.languages.sass.selector;
  	Prism.languages.insertBefore('sass', 'punctuation', {
  		'selector': {
eb240478   Luigi Serra   public room cards...
68
  			pattern: /([ \t]*)\S(?:,?[^,\r\n]+)*(?:,(?:\r?\n|\r)\1[ \t]+\S(?:,?[^,\r\n]+)*)*/,
73bcce88   luigser   COMPONENTS
69
70
71
72
73
  			lookbehind: true
  		}
  	});
  
  }(Prism));