diff options
author | Jinwei Zhao <[email protected]> | 2015-12-19 22:24:42 +0900 |
---|---|---|
committer | Jinwei Zhao <[email protected]> | 2017-01-13 15:07:45 +0800 |
commit | dbcebe1def5c355120c61b575390d1d9ac355f67 (patch) | |
tree | 70e61cc34a690c63ff80962e9ef883fe69dba6d3 /Code/Blocks/syntax/scripts/shBrushPlain.js | |
parent | 7e473afdca63f0ceed5d895c3be3b43f213ca136 (diff) | |
download | jinwei.me-dbcebe1def5c355120c61b575390d1d9ac355f67.tar.gz |
clear up
Diffstat (limited to 'Code/Blocks/syntax/scripts/shBrushPlain.js')
-rw-r--r-- | Code/Blocks/syntax/scripts/shBrushPlain.js | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/Code/Blocks/syntax/scripts/shBrushPlain.js b/Code/Blocks/syntax/scripts/shBrushPlain.js deleted file mode 100644 index 9f7d9e9..0000000 --- a/Code/Blocks/syntax/scripts/shBrushPlain.js +++ /dev/null | |||
@@ -1,33 +0,0 @@ | |||
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 | }; | ||
25 | |||
26 | Brush.prototype = new SyntaxHighlighter.Highlighter(); | ||
27 | Brush.aliases = ['text', 'plain']; | ||
28 | |||
29 | SyntaxHighlighter.brushes.Plain = Brush; | ||
30 | |||
31 | // CommonJS | ||
32 | typeof(exports) != 'undefined' ? exports.Brush = Brush : null; | ||
33 | })(); | ||