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 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';
32 function fixComments(match
, regexInfo
)
34 var css
= (match
[0].indexOf("///") == 0)
39 return [new SyntaxHighlighter
.Match(match
[0], match
.index
, css
)];
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'
54 this.forHtmlScript(SyntaxHighlighter
.regexLib
.aspScriptTags
);
57 Brush
.prototype = new SyntaxHighlighter
.Highlighter();
58 Brush
.aliases
= ['c#', 'c-sharp', 'csharp'];
60 SyntaxHighlighter
.brushes
.CSharp
= Brush
;
63 typeof(exports
) != 'undefined' ? exports
.Brush
= Brush
: null;