aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJinweiClarkChao <[email protected]>2014-02-20 12:50:15 +0800
committerJinweiClarkChao <[email protected]>2014-02-20 12:52:51 +0800
commit31fb10f393fbfd4d7adf528ec70624d2b8d247a8 (patch)
tree1009bb2a4f5fe89b8bc822b68104018ea8df5261 /Blocks/syntax/scripts/shBrushDiff.js
parentbe404e3e01ca839e730c884309c25abef10863c9 (diff)
downloadjinwei.me-31fb10f393fbfd4d7adf528ec70624d2b8d247a8.tar.gz
Six Blocks Version
Diffstat (limited to 'Blocks/syntax/scripts/shBrushDiff.js')
-rw-r--r--Blocks/syntax/scripts/shBrushDiff.js41
1 files changed, 41 insertions, 0 deletions
diff --git a/Blocks/syntax/scripts/shBrushDiff.js b/Blocks/syntax/scripts/shBrushDiff.js
new file mode 100644
index 0000000..e9b14fc
--- /dev/null
+++ b/Blocks/syntax/scripts/shBrushDiff.js
@@ -0,0 +1,41 @@
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.83 (July 02 2010)
10 *
11 * @copyright
12 * Copyright (C) 2004-2010 Alex Gorbatchev.
13 *
14 * @license
15 * Dual licensed under the MIT and GPL licenses.
16 */
17;(function()
18{
19 // CommonJS
20 typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null;
21
22 function Brush()
23 {
24 this.regexList = [
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' }
31 ];
32 };
33
34 Brush.prototype = new SyntaxHighlighter.Highlighter();
35 Brush.aliases = ['diff', 'patch'];
36
37 SyntaxHighlighter.brushes.Diff = Brush;
38
39 // CommonJS
40 typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
41})();
Powered by cgit v1.2.3 (git 2.41.0)