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 Patrick Webster
25 // http://patrickwebster.blogspot.com/2009/04/javafx-brush-for-syntaxhighlighter.html
26 var datatypes
= 'Boolean Byte Character Double Duration '
27 + 'Float Integer Long Number Short String Void'
30 var keywords
= 'abstract after and as assert at before bind bound break catch class '
31 + 'continue def delete else exclusive extends false finally first for from '
32 + 'function if import in indexof init insert instanceof into inverse last '
33 + 'lazy mixin mod nativearray new not null on or override package postinit '
34 + 'protected public public-init public-read replace return reverse sizeof '
35 + 'step super then this throw true try tween typeof var where while with '
36 + 'attribute let private readonly static trigger'
40 { regex
: SyntaxHighlighter
.regexLib
.singleLineCComments
, css
: 'comments' },
41 { regex
: SyntaxHighlighter
.regexLib
.multiLineCComments
, css
: 'comments' },
42 { regex
: SyntaxHighlighter
.regexLib
.singleQuotedString
, css
: 'string' },
43 { regex
: SyntaxHighlighter
.regexLib
.doubleQuotedString
, css
: 'string' },
44 { regex
: /(-?\.?)(\b(\d*\.?\d+|\d+\.?\d*)(e[+-]?\d+)?|0x[a-f\d]+)\b\.?/gi, css
: 'color2' }, // numbers
45 { regex
: new RegExp(this.getKeywords(datatypes
), 'gm'), css
: 'variable' }, // datatypes
46 { regex
: new RegExp(this.getKeywords(keywords
), 'gm'), css
: 'keyword' }
48 this.forHtmlScript(SyntaxHighlighter
.regexLib
.aspScriptTags
);
51 Brush
.prototype = new SyntaxHighlighter
.Highlighter();
52 Brush
.aliases
= ['jfx', 'javafx'];
54 SyntaxHighlighter
.brushes
.JavaFX
= Brush
;
57 typeof(exports
) != 'undefined' ? exports
.Brush
= Brush
: null;