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;
25 { regex
: /^\+\+\+.*$/gm, css
: 'color2' },
26 { regex
: /^\-\-\-.*$/gm, css
: 'color2' },
27 { regex
: /^\s.*$/gm, css
: 'color1' },
28 { regex
: /^@@.*@@$/gm, css
: 'variable' },
29 { regex
: /^\+[^\+]{1}.*$/gm, css
: 'string' },
30 { regex
: /^\-[^\-]{1}.*$/gm, css
: 'comments' }
34 Brush
.prototype = new SyntaxHighlighter
.Highlighter();
35 Brush
.aliases
= ['diff', 'patch'];
37 SyntaxHighlighter
.brushes
.Diff
= Brush
;
40 typeof(exports
) != 'undefined' ? exports
.Brush
= Brush
: null;