1/**
2 * SyntaxHighlighter
3 * http://alexgorbatchev.com/SyntaxHighlighter
4 *
5 * SyntaxHighlighter is donationware. If you are using it, please donate.
6 * http://alexgorbatchev.com/SyntaxHighlighter/donate.html
7 *
8 * @version
9 * 3.0.90 (Sat, 18 Jun 2016 21:01:41 GMT)
10 *
11 * @copyright
12 * Copyright (C) 2004-2013 Alex Gorbatchev.
13 *
14 * @license
15 * Dual licensed under the MIT and GPL licenses.
16 */
17;(function()
18{
19	// CommonJS
20	SyntaxHighlighter = SyntaxHighlighter || (typeof require !== 'undefined'? require('shCore').SyntaxHighlighter : null);
21
22	function Brush()
23	{
24		// Contributed by Jean-Lou Dupont
25		// http://jldupont.blogspot.com/2009/06/erlang-syntax-highlighter.html
26
27		// According to: http://erlang.org/doc/reference_manual/introduction.html#1.5
28		var keywords = 'after and andalso band begin bnot bor bsl bsr bxor '+
29			'case catch cond div end fun if let not of or orelse '+
30			'query receive rem try when xor'+
31			// additional
32			' module export import define';
33
34		this.regexList = [
35			{ regex: new RegExp("[A-Z][A-Za-z0-9_]+", 'g'), 			css: 'constants' },
36			{ regex: new RegExp("\\%.+", 'gm'), 						css: 'comments' },
37			{ regex: new RegExp("\\?[A-Za-z0-9_]+", 'g'), 				css: 'preprocessor' },
38			{ regex: new RegExp("[a-z0-9_]+:[a-z0-9_]+", 'g'), 			css: 'functions' },
39			{ regex: SyntaxHighlighter.regexLib.doubleQuotedString,		css: 'string' },
40			{ regex: SyntaxHighlighter.regexLib.singleQuotedString,		css: 'string' },
41			{ regex: new RegExp(this.getKeywords(keywords),	'gm'),		css: 'keyword' }
42			];
43	};
44
45	Brush.prototype	= new SyntaxHighlighter.Highlighter();
46	Brush.aliases	= ['erl', 'erlang'];
47
48	SyntaxHighlighter.brushes.Erlang = Brush;
49
50	// CommonJS
51	typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
52})();
53