Blame view

bower_components/prism/components/prism-core.js 9.66 KB
73bcce88   luigser   COMPONENTS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
  var _self = (typeof window !== 'undefined')
  	? window   // if in browser
  	: (
  		(typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope)
  		? self // if in worker
  		: {}   // if in node js
  	);
  
  /**
   * Prism: Lightweight, robust, elegant syntax highlighting
   * MIT license http://www.opensource.org/licenses/mit-license.php/
   * @author Lea Verou http://lea.verou.me
   */
  
  var Prism = (function(){
  
  // Private helper vars
  var lang = /\blang(?:uage)?-(?!\*)(\w+)\b/i;
  
  var _ = _self.Prism = {
  	util: {
  		encode: function (tokens) {
  			if (tokens instanceof Token) {
  				return new Token(tokens.type, _.util.encode(tokens.content), tokens.alias);
  			} else if (_.util.type(tokens) === 'Array') {
  				return tokens.map(_.util.encode);
  			} else {
  				return tokens.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/\u00a0/g, ' ');
  			}
  		},
  
  		type: function (o) {
  			return Object.prototype.toString.call(o).match(/\[object (\w+)\]/)[1];
  		},
  
  		// Deep clone a language definition (e.g. to extend it)
  		clone: function (o) {
  			var type = _.util.type(o);
  
  			switch (type) {
  				case 'Object':
  					var clone = {};
  
  					for (var key in o) {
  						if (o.hasOwnProperty(key)) {
  							clone[key] = _.util.clone(o[key]);
  						}
  					}
  
  					return clone;
  
  				case 'Array':
  					// Check for existence for IE8
  					return o.map && o.map(function(v) { return _.util.clone(v); });
  			}
  
  			return o;
  		}
  	},
  
  	languages: {
  		extend: function (id, redef) {
  			var lang = _.util.clone(_.languages[id]);
  
  			for (var key in redef) {
  				lang[key] = redef[key];
  			}
  
  			return lang;
  		},
  
  		/**
  		 * Insert a token before another token in a language literal
  		 * As this needs to recreate the object (we cannot actually insert before keys in object literals),
  		 * we cannot just provide an object, we need anobject and a key.
  		 * @param inside The key (or language id) of the parent
  		 * @param before The key to insert before. If not provided, the function appends instead.
  		 * @param insert Object with the key/value pairs to insert
  		 * @param root The object that contains `inside`. If equal to Prism.languages, it can be omitted.
  		 */
  		insertBefore: function (inside, before, insert, root) {
  			root = root || _.languages;
  			var grammar = root[inside];
  			
  			if (arguments.length == 2) {
  				insert = arguments[1];
  				
  				for (var newToken in insert) {
  					if (insert.hasOwnProperty(newToken)) {
  						grammar[newToken] = insert[newToken];
  					}
  				}
  				
  				return grammar;
  			}
  			
  			var ret = {};
  
  			for (var token in grammar) {
  
  				if (grammar.hasOwnProperty(token)) {
  
  					if (token == before) {
  
  						for (var newToken in insert) {
  
  							if (insert.hasOwnProperty(newToken)) {
  								ret[newToken] = insert[newToken];
  							}
  						}
  					}
  
  					ret[token] = grammar[token];
  				}
  			}
  			
  			// Update references in other language definitions
  			_.languages.DFS(_.languages, function(key, value) {
  				if (value === root[inside] && key != inside) {
  					this[key] = ret;
  				}
  			});
  
  			return root[inside] = ret;
  		},
  
  		// Traverse a language definition with Depth First Search
  		DFS: function(o, callback, type) {
  			for (var i in o) {
  				if (o.hasOwnProperty(i)) {
  					callback.call(o, i, o[i], type || i);
  
  					if (_.util.type(o[i]) === 'Object') {
  						_.languages.DFS(o[i], callback);
  					}
  					else if (_.util.type(o[i]) === 'Array') {
  						_.languages.DFS(o[i], callback, i);
  					}
  				}
  			}
  		}
  	},
eb240478   Luigi Serra   public room cards...
143
144
  	plugins: {},
  	
73bcce88   luigser   COMPONENTS
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
  	highlightAll: function(async, callback) {
  		var elements = document.querySelectorAll('code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code');
  
  		for (var i=0, element; element = elements[i++];) {
  			_.highlightElement(element, async === true, callback);
  		}
  	},
  
  	highlightElement: function(element, async, callback) {
  		// Find language
  		var language, grammar, parent = element;
  
  		while (parent && !lang.test(parent.className)) {
  			parent = parent.parentNode;
  		}
  
  		if (parent) {
  			language = (parent.className.match(lang) || [,''])[1];
  			grammar = _.languages[language];
  		}
  
  		// Set language on the element, if not present
  		element.className = element.className.replace(lang, '').replace(/\s+/g, ' ') + ' language-' + language;
  
  		// Set language on the parent, for styling
  		parent = element.parentNode;
  
  		if (/pre/i.test(parent.nodeName)) {
  			parent.className = parent.className.replace(lang, '').replace(/\s+/g, ' ') + ' language-' + language;
  		}
  
73bcce88   luigser   COMPONENTS
176
177
  		var code = element.textContent;
  
73bcce88   luigser   COMPONENTS
178
179
180
181
182
183
184
  		var env = {
  			element: element,
  			language: language,
  			grammar: grammar,
  			code: code
  		};
  
eb240478   Luigi Serra   public room cards...
185
186
187
188
189
  		if (!code || !grammar) {
  			_.hooks.run('complete', env);
  			return;
  		}
  
73bcce88   luigser   COMPONENTS
190
191
192
193
194
195
  		_.hooks.run('before-highlight', env);
  
  		if (async && _self.Worker) {
  			var worker = new Worker(_.filename);
  
  			worker.onmessage = function(evt) {
eb240478   Luigi Serra   public room cards...
196
  				env.highlightedCode = evt.data;
73bcce88   luigser   COMPONENTS
197
198
199
200
201
202
203
  
  				_.hooks.run('before-insert', env);
  
  				env.element.innerHTML = env.highlightedCode;
  
  				callback && callback.call(env.element);
  				_.hooks.run('after-highlight', env);
eb240478   Luigi Serra   public room cards...
204
  				_.hooks.run('complete', env);
73bcce88   luigser   COMPONENTS
205
206
207
208
  			};
  
  			worker.postMessage(JSON.stringify({
  				language: env.language,
eb240478   Luigi Serra   public room cards...
209
210
  				code: env.code,
  				immediateClose: true
73bcce88   luigser   COMPONENTS
211
212
213
214
215
216
217
218
219
220
221
222
  			}));
  		}
  		else {
  			env.highlightedCode = _.highlight(env.code, env.grammar, env.language);
  
  			_.hooks.run('before-insert', env);
  
  			env.element.innerHTML = env.highlightedCode;
  
  			callback && callback.call(element);
  
  			_.hooks.run('after-highlight', env);
eb240478   Luigi Serra   public room cards...
223
  			_.hooks.run('complete', env);
73bcce88   luigser   COMPONENTS
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
  		}
  	},
  
  	highlight: function (text, grammar, language) {
  		var tokens = _.tokenize(text, grammar);
  		return Token.stringify(_.util.encode(tokens), language);
  	},
  
  	tokenize: function(text, grammar, language) {
  		var Token = _.Token;
  
  		var strarr = [text];
  
  		var rest = grammar.rest;
  
  		if (rest) {
  			for (var token in rest) {
  				grammar[token] = rest[token];
  			}
  
  			delete grammar.rest;
  		}
  
  		tokenloop: for (var token in grammar) {
  			if(!grammar.hasOwnProperty(token) || !grammar[token]) {
  				continue;
  			}
  
  			var patterns = grammar[token];
  			patterns = (_.util.type(patterns) === "Array") ? patterns : [patterns];
  
  			for (var j = 0; j < patterns.length; ++j) {
  				var pattern = patterns[j],
  					inside = pattern.inside,
  					lookbehind = !!pattern.lookbehind,
  					lookbehindLength = 0,
  					alias = pattern.alias;
  
  				pattern = pattern.pattern || pattern;
  
  				for (var i=0; i<strarr.length; i++) { // Don’t cache length as it changes during the loop
  
  					var str = strarr[i];
  
  					if (strarr.length > text.length) {
  						// Something went terribly wrong, ABORT, ABORT!
  						break tokenloop;
  					}
  
  					if (str instanceof Token) {
  						continue;
  					}
  
  					pattern.lastIndex = 0;
  
  					var match = pattern.exec(str);
  
  					if (match) {
  						if(lookbehind) {
  							lookbehindLength = match[1].length;
  						}
  
  						var from = match.index - 1 + lookbehindLength,
  							match = match[0].slice(lookbehindLength),
  							len = match.length,
  							to = from + len,
  							before = str.slice(0, from + 1),
  							after = str.slice(to + 1);
  
  						var args = [i, 1];
  
  						if (before) {
  							args.push(before);
  						}
  
  						var wrapped = new Token(token, inside? _.tokenize(match, inside) : match, alias);
  
  						args.push(wrapped);
  
  						if (after) {
  							args.push(after);
  						}
  
  						Array.prototype.splice.apply(strarr, args);
  					}
  				}
  			}
  		}
  
  		return strarr;
  	},
  
  	hooks: {
  		all: {},
  
  		add: function (name, callback) {
  			var hooks = _.hooks.all;
  
  			hooks[name] = hooks[name] || [];
  
  			hooks[name].push(callback);
  		},
  
  		run: function (name, env) {
  			var callbacks = _.hooks.all[name];
  
  			if (!callbacks || !callbacks.length) {
  				return;
  			}
  
  			for (var i=0, callback; callback = callbacks[i++];) {
  				callback(env);
  			}
  		}
  	}
  };
  
  var Token = _.Token = function(type, content, alias) {
  	this.type = type;
  	this.content = content;
  	this.alias = alias;
  };
  
  Token.stringify = function(o, language, parent) {
  	if (typeof o == 'string') {
  		return o;
  	}
  
  	if (_.util.type(o) === 'Array') {
  		return o.map(function(element) {
  			return Token.stringify(element, language, o);
  		}).join('');
  	}
  
  	var env = {
  		type: o.type,
  		content: Token.stringify(o.content, language, parent),
  		tag: 'span',
  		classes: ['token', o.type],
  		attributes: {},
  		language: language,
  		parent: parent
  	};
  
  	if (env.type == 'comment') {
  		env.attributes['spellcheck'] = 'true';
  	}
  
  	if (o.alias) {
  		var aliases = _.util.type(o.alias) === 'Array' ? o.alias : [o.alias];
  		Array.prototype.push.apply(env.classes, aliases);
  	}
  
  	_.hooks.run('wrap', env);
  
  	var attributes = '';
  
  	for (var name in env.attributes) {
eb240478   Luigi Serra   public room cards...
382
  		attributes += (attributes ? ' ' : '') + name + '="' + (env.attributes[name] || '') + '"';
73bcce88   luigser   COMPONENTS
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
  	}
  
  	return '<' + env.tag + ' class="' + env.classes.join(' ') + '" ' + attributes + '>' + env.content + '</' + env.tag + '>';
  
  };
  
  if (!_self.document) {
  	if (!_self.addEventListener) {
  		// in Node.js
  		return _self.Prism;
  	}
   	// In worker
  	_self.addEventListener('message', function(evt) {
  		var message = JSON.parse(evt.data),
  		    lang = message.language,
eb240478   Luigi Serra   public room cards...
398
399
  		    code = message.code,
  		    immediateClose = message.immediateClose;
73bcce88   luigser   COMPONENTS
400
  
eb240478   Luigi Serra   public room cards...
401
402
403
404
  		_self.postMessage(_.highlight(code, _.languages[lang], lang));
  		if (immediateClose) {
  			_self.close();
  		}
73bcce88   luigser   COMPONENTS
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
  	}, false);
  
  	return _self.Prism;
  }
  
  // Get current script and highlight
  var script = document.getElementsByTagName('script');
  
  script = script[script.length - 1];
  
  if (script) {
  	_.filename = script.src;
  
  	if (document.addEventListener && !script.hasAttribute('data-manual')) {
  		document.addEventListener('DOMContentLoaded', _.highlightAll);
  	}
  }
  
  return _self.Prism;
  
  })();
  
  if (typeof module !== 'undefined' && module.exports) {
  	module.exports = Prism;
  }
eb240478   Luigi Serra   public room cards...
430
431
432
433
434
  
  // hack for components to work correctly in node.js
  if (typeof global !== 'undefined') {
  	global.Prism = Prism;
  }