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 var keywords
= 'break case catch continue ' +
25 'default delete do else false ' +
26 'for function if in instanceof ' +
27 'new null return super switch ' +
28 'this throw true try typeof var while with'
31 var r
= SyntaxHighlighter
.regexLib
;
34 { regex
: r
.multiLineDoubleQuotedString
, css
: 'string' }, // double quoted strings
35 { regex
: r
.multiLineSingleQuotedString
, css
: 'string' }, // single quoted strings
36 { regex
: r
.singleLineCComments
, css
: 'comments' }, // one line comments
37 { regex
: r
.multiLineCComments
, css
: 'comments' }, // multiline comments
38 { regex
: /\s*#.*/gm, css
: 'preprocessor' }, // preprocessor tags like #region and #endregion
39 { regex
: new RegExp(this.getKeywords(keywords
), 'gm'), css
: 'keyword' } // keywords
42 this.forHtmlScript(r
.scriptScriptTags
);
45 Brush
.prototype = new SyntaxHighlighter
.Highlighter();
46 Brush
.aliases
= ['js', 'jscript', 'javascript'];
48 SyntaxHighlighter
.brushes
.JScript
= Brush
;
51 typeof(exports
) != 'undefined' ? exports
.Brush
= Brush
: null;