3 * http://alexgorbatchev.com/SyntaxHighlighter
5 * SyntaxHighlighter is donationware. If you are using it, please donate.
6 * http://alexgorbatchev.com/SyntaxHighlighter/donate.html
9 * 3.0.83 (July 02 2010)
12 * Copyright (C) 2004-2010 Alex Gorbatchev.
15 * Dual licensed under the MIT and GPL licenses.
20 typeof(require
) != 'undefined' ? SyntaxHighlighter
= require('shCore').SyntaxHighlighter
: null;
24 // Contributed by Jean-Lou Dupont
25 // http://jldupont.blogspot.com/2009/06/erlang-syntax-highlighter.html
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'+
32 ' module export import define';
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' }
45 Brush
.prototype = new SyntaxHighlighter
.Highlighter();
46 Brush
.aliases
= ['erl', 'erlang'];
48 SyntaxHighlighter
.brushes
.Erland
= Brush
;
51 typeof(exports
) != 'undefined' ? exports
.Brush
= Brush
: null;