diff options
author | JinweiClarkChao <[email protected]> | 2014-02-20 12:50:15 +0800 |
---|---|---|
committer | JinweiClarkChao <[email protected]> | 2014-02-20 12:52:51 +0800 |
commit | 31fb10f393fbfd4d7adf528ec70624d2b8d247a8 (patch) | |
tree | 1009bb2a4f5fe89b8bc822b68104018ea8df5261 /Blocks/syntax/scripts/shBrushCSharp.js | |
parent | be404e3e01ca839e730c884309c25abef10863c9 (diff) | |
download | jinwei.me-31fb10f393fbfd4d7adf528ec70624d2b8d247a8.tar.gz |
Six Blocks Version
Diffstat (limited to 'Blocks/syntax/scripts/shBrushCSharp.js')
-rw-r--r-- | Blocks/syntax/scripts/shBrushCSharp.js | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/Blocks/syntax/scripts/shBrushCSharp.js b/Blocks/syntax/scripts/shBrushCSharp.js new file mode 100644 index 0000000..079214e --- /dev/null +++ b/Blocks/syntax/scripts/shBrushCSharp.js | |||
@@ -0,0 +1,65 @@ | |||
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 | var keywords = 'abstract as base bool break byte case catch char checked class const ' + | ||
25 | 'continue decimal default delegate do double else enum event explicit ' + | ||
26 | 'extern false finally fixed float for foreach get goto if implicit in int ' + | ||
27 | 'interface internal is lock long namespace new null object operator out ' + | ||
28 | 'override params private protected public readonly ref return sbyte sealed set ' + | ||
29 | 'short sizeof stackalloc static string struct switch this throw true try ' + | ||
30 | 'typeof uint ulong unchecked unsafe ushort using virtual void while'; | ||
31 | |||
32 | function fixComments(match, regexInfo) | ||
33 | { | ||
34 | var css = (match[0].indexOf("///") == 0) | ||
35 | ? 'color1' | ||
36 | : 'comments' | ||
37 | ; | ||
38 | |||
39 | return [new SyntaxHighlighter.Match(match[0], match.index, css)]; | ||
40 | } | ||
41 | |||
42 | this.regexList = [ | ||
43 | { regex: SyntaxHighlighter.regexLib.singleLineCComments, func : fixComments }, // one line comments | ||
44 | { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments | ||
45 | { regex: /@"(?:[^"]|"")*"/g, css: 'string' }, // @-quoted strings | ||
46 | { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings | ||
47 | { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings | ||
48 | { regex: /^\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endregion | ||
49 | { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // c# keyword | ||
50 | { regex: /\bpartial(?=\s+(?:class|interface|struct)\b)/g, css: 'keyword' }, // contextual keyword: 'partial' | ||
51 | { regex: /\byield(?=\s+(?:return|break)\b)/g, css: 'keyword' } // contextual keyword: 'yield' | ||
52 | ]; | ||
53 | |||
54 | this.forHtmlScript(SyntaxHighlighter.regexLib.aspScriptTags); | ||
55 | }; | ||
56 | |||
57 | Brush.prototype = new SyntaxHighlighter.Highlighter(); | ||
58 | Brush.aliases = ['c#', 'c-sharp', 'csharp']; | ||
59 | |||
60 | SyntaxHighlighter.brushes.CSharp = Brush; | ||
61 | |||
62 | // CommonJS | ||
63 | typeof(exports) != 'undefined' ? exports.Brush = Brush : null; | ||
64 | })(); | ||
65 | |||