hljs 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/README.md +11 -1
- data/lib/hljs.rb +17 -5
- data/lib/hljs/adapter.rb +15 -4
- data/lib/hljs/adapters/highlight_js.rb +3 -3
- data/lib/hljs/adapters/syntax_highlighter.rb +25 -0
- data/lib/hljs/version.rb +1 -1
- data/spec/fixtures/SyntaxHighlighter/html.xml.html +1 -0
- data/spec/fixtures/SyntaxHighlighter/javascript.js.html +1 -0
- data/spec/fixtures/SyntaxHighlighter/python.py.html +1 -0
- data/spec/fixtures/SyntaxHighlighter/ruby.rb.html +1 -0
- data/spec/fixtures/highlight.js/{output/output.xml.html → html.xml.html} +0 -0
- data/spec/fixtures/highlight.js/{output/output.js.html → javascript.js.html} +0 -0
- data/spec/fixtures/highlight.js/{output/output.py.html → python.py.html} +0 -0
- data/spec/fixtures/highlight.js/{output/output.rb.html → ruby.rb.html} +0 -0
- data/spec/fixtures/{highlight.js/input/input.xml → input/html.xml} +0 -0
- data/spec/fixtures/{highlight.js/input/input.js → input/javascript.js} +0 -0
- data/spec/fixtures/{highlight.js/input/input.py → input/python.py} +0 -0
- data/spec/fixtures/{highlight.js/input/input.rb → input/ruby.rb} +0 -0
- data/spec/higlight_js_spec.rb +24 -9
- data/spec/hljs_spec.rb +25 -15
- data/spec/shared_examples_for_adapter.rb +14 -0
- data/spec/spec_helper.rb +9 -6
- data/spec/syntax_highlighter_spec.rb +24 -0
- data/vendor/SyntaxHighlighter/shBrushAS3.js +59 -0
- data/vendor/SyntaxHighlighter/shBrushAppleScript.js +75 -0
- data/vendor/SyntaxHighlighter/shBrushBash.js +59 -0
- data/vendor/SyntaxHighlighter/shBrushCSharp.js +65 -0
- data/vendor/SyntaxHighlighter/shBrushColdFusion.js +100 -0
- data/vendor/SyntaxHighlighter/shBrushCpp.js +97 -0
- data/vendor/SyntaxHighlighter/shBrushCss.js +91 -0
- data/vendor/SyntaxHighlighter/shBrushDelphi.js +55 -0
- data/vendor/SyntaxHighlighter/shBrushDiff.js +41 -0
- data/vendor/SyntaxHighlighter/shBrushErlang.js +52 -0
- data/vendor/SyntaxHighlighter/shBrushGroovy.js +67 -0
- data/vendor/SyntaxHighlighter/shBrushJScript.js +52 -0
- data/vendor/SyntaxHighlighter/shBrushJava.js +57 -0
- data/vendor/SyntaxHighlighter/shBrushJavaFX.js +58 -0
- data/vendor/SyntaxHighlighter/shBrushPerl.js +72 -0
- data/vendor/SyntaxHighlighter/shBrushPhp.js +88 -0
- data/vendor/SyntaxHighlighter/shBrushPlain.js +33 -0
- data/vendor/SyntaxHighlighter/shBrushPowerShell.js +74 -0
- data/vendor/SyntaxHighlighter/shBrushPython.js +64 -0
- data/vendor/SyntaxHighlighter/shBrushRuby.js +55 -0
- data/vendor/SyntaxHighlighter/shBrushSass.js +94 -0
- data/vendor/SyntaxHighlighter/shBrushScala.js +51 -0
- data/vendor/SyntaxHighlighter/shBrushSql.js +66 -0
- data/vendor/SyntaxHighlighter/shBrushVb.js +56 -0
- data/vendor/SyntaxHighlighter/shBrushXml.js +69 -0
- data/vendor/SyntaxHighlighter/shCore.js +17 -0
- metadata +57 -18
@@ -0,0 +1,33 @@
|
|
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
|
+
})();
|
@@ -0,0 +1,74 @@
|
|
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
|
+
// Contributes by B.v.Zanten, Getronics
|
25
|
+
// http://confluence.atlassian.com/display/CONFEXT/New+Code+Macro
|
26
|
+
|
27
|
+
var keywords = 'Add-Content Add-History Add-Member Add-PSSnapin Clear(-Content)? Clear-Item ' +
|
28
|
+
'Clear-ItemProperty Clear-Variable Compare-Object ConvertFrom-SecureString Convert-Path ' +
|
29
|
+
'ConvertTo-Html ConvertTo-SecureString Copy(-Item)? Copy-ItemProperty Export-Alias ' +
|
30
|
+
'Export-Clixml Export-Console Export-Csv ForEach(-Object)? Format-Custom Format-List ' +
|
31
|
+
'Format-Table Format-Wide Get-Acl Get-Alias Get-AuthenticodeSignature Get-ChildItem Get-Command ' +
|
32
|
+
'Get-Content Get-Credential Get-Culture Get-Date Get-EventLog Get-ExecutionPolicy ' +
|
33
|
+
'Get-Help Get-History Get-Host Get-Item Get-ItemProperty Get-Location Get-Member ' +
|
34
|
+
'Get-PfxCertificate Get-Process Get-PSDrive Get-PSProvider Get-PSSnapin Get-Service ' +
|
35
|
+
'Get-TraceSource Get-UICulture Get-Unique Get-Variable Get-WmiObject Group-Object ' +
|
36
|
+
'Import-Alias Import-Clixml Import-Csv Invoke-Expression Invoke-History Invoke-Item ' +
|
37
|
+
'Join-Path Measure-Command Measure-Object Move(-Item)? Move-ItemProperty New-Alias ' +
|
38
|
+
'New-Item New-ItemProperty New-Object New-PSDrive New-Service New-TimeSpan ' +
|
39
|
+
'New-Variable Out-Default Out-File Out-Host Out-Null Out-Printer Out-String Pop-Location ' +
|
40
|
+
'Push-Location Read-Host Remove-Item Remove-ItemProperty Remove-PSDrive Remove-PSSnapin ' +
|
41
|
+
'Remove-Variable Rename-Item Rename-ItemProperty Resolve-Path Restart-Service Resume-Service ' +
|
42
|
+
'Select-Object Select-String Set-Acl Set-Alias Set-AuthenticodeSignature Set-Content ' +
|
43
|
+
'Set-Date Set-ExecutionPolicy Set-Item Set-ItemProperty Set-Location Set-PSDebug ' +
|
44
|
+
'Set-Service Set-TraceSource Set(-Variable)? Sort-Object Split-Path Start-Service ' +
|
45
|
+
'Start-Sleep Start-Transcript Stop-Process Stop-Service Stop-Transcript Suspend-Service ' +
|
46
|
+
'Tee-Object Test-Path Trace-Command Update-FormatData Update-TypeData Where(-Object)? ' +
|
47
|
+
'Write-Debug Write-Error Write(-Host)? Write-Output Write-Progress Write-Verbose Write-Warning';
|
48
|
+
var alias = 'ac asnp clc cli clp clv cpi cpp cvpa diff epal epcsv fc fl ' +
|
49
|
+
'ft fw gal gc gci gcm gdr ghy gi gl gm gp gps group gsv ' +
|
50
|
+
'gsnp gu gv gwmi iex ihy ii ipal ipcsv mi mp nal ndr ni nv oh rdr ' +
|
51
|
+
'ri rni rnp rp rsnp rv rvpa sal sasv sc select si sl sleep sort sp ' +
|
52
|
+
'spps spsv sv tee cat cd cp h history kill lp ls ' +
|
53
|
+
'mount mv popd ps pushd pwd r rm rmdir echo cls chdir del dir ' +
|
54
|
+
'erase rd ren type % \\?';
|
55
|
+
|
56
|
+
this.regexList = [
|
57
|
+
{ regex: /#.*$/gm, css: 'comments' }, // one line comments
|
58
|
+
{ regex: /\$[a-zA-Z0-9]+\b/g, css: 'value' }, // variables $Computer1
|
59
|
+
{ regex: /\-[a-zA-Z]+\b/g, css: 'keyword' }, // Operators -not -and -eq
|
60
|
+
{ regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings
|
61
|
+
{ regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings
|
62
|
+
{ regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' },
|
63
|
+
{ regex: new RegExp(this.getKeywords(alias), 'gmi'), css: 'keyword' }
|
64
|
+
];
|
65
|
+
};
|
66
|
+
|
67
|
+
Brush.prototype = new SyntaxHighlighter.Highlighter();
|
68
|
+
Brush.aliases = ['powershell', 'ps'];
|
69
|
+
|
70
|
+
SyntaxHighlighter.brushes.PowerShell = Brush;
|
71
|
+
|
72
|
+
// CommonJS
|
73
|
+
typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
|
74
|
+
})();
|
@@ -0,0 +1,64 @@
|
|
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
|
+
// Contributed by Gheorghe Milas and Ahmad Sherif
|
25
|
+
|
26
|
+
var keywords = 'and assert break class continue def del elif else ' +
|
27
|
+
'except exec finally for from global if import in is ' +
|
28
|
+
'lambda not or pass print raise return try yield while';
|
29
|
+
|
30
|
+
var funcs = '__import__ abs all any apply basestring bin bool buffer callable ' +
|
31
|
+
'chr classmethod cmp coerce compile complex delattr dict dir ' +
|
32
|
+
'divmod enumerate eval execfile file filter float format frozenset ' +
|
33
|
+
'getattr globals hasattr hash help hex id input int intern ' +
|
34
|
+
'isinstance issubclass iter len list locals long map max min next ' +
|
35
|
+
'object oct open ord pow print property range raw_input reduce ' +
|
36
|
+
'reload repr reversed round set setattr slice sorted staticmethod ' +
|
37
|
+
'str sum super tuple type type unichr unicode vars xrange zip';
|
38
|
+
|
39
|
+
var special = 'None True False self cls class_';
|
40
|
+
|
41
|
+
this.regexList = [
|
42
|
+
{ regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' },
|
43
|
+
{ regex: /^\s*@\w+/gm, css: 'decorator' },
|
44
|
+
{ regex: /(['\"]{3})([^\1])*?\1/gm, css: 'comments' },
|
45
|
+
{ regex: /"(?!")(?:\.|\\\"|[^\""\n])*"/gm, css: 'string' },
|
46
|
+
{ regex: /'(?!')(?:\.|(\\\')|[^\''\n])*'/gm, css: 'string' },
|
47
|
+
{ regex: /\+|\-|\*|\/|\%|=|==/gm, css: 'keyword' },
|
48
|
+
{ regex: /\b\d+\.?\w*/g, css: 'value' },
|
49
|
+
{ regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'functions' },
|
50
|
+
{ regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' },
|
51
|
+
{ regex: new RegExp(this.getKeywords(special), 'gm'), css: 'color1' }
|
52
|
+
];
|
53
|
+
|
54
|
+
this.forHtmlScript(SyntaxHighlighter.regexLib.aspScriptTags);
|
55
|
+
};
|
56
|
+
|
57
|
+
Brush.prototype = new SyntaxHighlighter.Highlighter();
|
58
|
+
Brush.aliases = ['py', 'python'];
|
59
|
+
|
60
|
+
SyntaxHighlighter.brushes.Python = Brush;
|
61
|
+
|
62
|
+
// CommonJS
|
63
|
+
typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
|
64
|
+
})();
|
@@ -0,0 +1,55 @@
|
|
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
|
+
// Contributed by Erik Peterson.
|
25
|
+
|
26
|
+
var keywords = 'alias and BEGIN begin break case class def define_method defined do each else elsif ' +
|
27
|
+
'END end ensure false for if in module new next nil not or raise redo rescue retry return ' +
|
28
|
+
'self super then throw true undef unless until when while yield';
|
29
|
+
|
30
|
+
var builtins = 'Array Bignum Binding Class Continuation Dir Exception FalseClass File::Stat File Fixnum Fload ' +
|
31
|
+
'Hash Integer IO MatchData Method Module NilClass Numeric Object Proc Range Regexp String Struct::TMS Symbol ' +
|
32
|
+
'ThreadGroup Thread Time TrueClass';
|
33
|
+
|
34
|
+
this.regexList = [
|
35
|
+
{ regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, // one line comments
|
36
|
+
{ regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings
|
37
|
+
{ regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings
|
38
|
+
{ regex: /\b[A-Z0-9_]+\b/g, css: 'constants' }, // constants
|
39
|
+
{ regex: /:[a-z][A-Za-z0-9_]*/g, css: 'color2' }, // symbols
|
40
|
+
{ regex: /(\$|@@|@)\w+/g, css: 'variable bold' }, // $global, @instance, and @@class variables
|
41
|
+
{ regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // keywords
|
42
|
+
{ regex: new RegExp(this.getKeywords(builtins), 'gm'), css: 'color1' } // builtins
|
43
|
+
];
|
44
|
+
|
45
|
+
this.forHtmlScript(SyntaxHighlighter.regexLib.aspScriptTags);
|
46
|
+
};
|
47
|
+
|
48
|
+
Brush.prototype = new SyntaxHighlighter.Highlighter();
|
49
|
+
Brush.aliases = ['ruby', 'rails', 'ror', 'rb'];
|
50
|
+
|
51
|
+
SyntaxHighlighter.brushes.Ruby = Brush;
|
52
|
+
|
53
|
+
// CommonJS
|
54
|
+
typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
|
55
|
+
})();
|
@@ -0,0 +1,94 @@
|
|
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
|
+
function getKeywordsCSS(str)
|
25
|
+
{
|
26
|
+
return '\\b([a-z_]|)' + str.replace(/ /g, '(?=:)\\b|\\b([a-z_\\*]|\\*|)') + '(?=:)\\b';
|
27
|
+
};
|
28
|
+
|
29
|
+
function getValuesCSS(str)
|
30
|
+
{
|
31
|
+
return '\\b' + str.replace(/ /g, '(?!-)(?!:)\\b|\\b()') + '\:\\b';
|
32
|
+
};
|
33
|
+
|
34
|
+
var keywords = 'ascent azimuth background-attachment background-color background-image background-position ' +
|
35
|
+
'background-repeat background baseline bbox border-collapse border-color border-spacing border-style border-top ' +
|
36
|
+
'border-right border-bottom border-left border-top-color border-right-color border-bottom-color border-left-color ' +
|
37
|
+
'border-top-style border-right-style border-bottom-style border-left-style border-top-width border-right-width ' +
|
38
|
+
'border-bottom-width border-left-width border-width border bottom cap-height caption-side centerline clear clip color ' +
|
39
|
+
'content counter-increment counter-reset cue-after cue-before cue cursor definition-src descent direction display ' +
|
40
|
+
'elevation empty-cells float font-size-adjust font-family font-size font-stretch font-style font-variant font-weight font ' +
|
41
|
+
'height left letter-spacing line-height list-style-image list-style-position list-style-type list-style margin-top ' +
|
42
|
+
'margin-right margin-bottom margin-left margin marker-offset marks mathline max-height max-width min-height min-width orphans ' +
|
43
|
+
'outline-color outline-style outline-width outline overflow padding-top padding-right padding-bottom padding-left padding page ' +
|
44
|
+
'page-break-after page-break-before page-break-inside pause pause-after pause-before pitch pitch-range play-during position ' +
|
45
|
+
'quotes right richness size slope src speak-header speak-numeral speak-punctuation speak speech-rate stemh stemv stress ' +
|
46
|
+
'table-layout text-align top text-decoration text-indent text-shadow text-transform unicode-bidi unicode-range units-per-em ' +
|
47
|
+
'vertical-align visibility voice-family volume white-space widows width widths word-spacing x-height z-index';
|
48
|
+
|
49
|
+
var values = 'above absolute all always aqua armenian attr aural auto avoid baseline behind below bidi-override black blink block blue bold bolder '+
|
50
|
+
'both bottom braille capitalize caption center center-left center-right circle close-quote code collapse compact condensed '+
|
51
|
+
'continuous counter counters crop cross crosshair cursive dashed decimal decimal-leading-zero digits disc dotted double '+
|
52
|
+
'embed embossed e-resize expanded extra-condensed extra-expanded fantasy far-left far-right fast faster fixed format fuchsia '+
|
53
|
+
'gray green groove handheld hebrew help hidden hide high higher icon inline-table inline inset inside invert italic '+
|
54
|
+
'justify landscape large larger left-side left leftwards level lighter lime line-through list-item local loud lower-alpha '+
|
55
|
+
'lowercase lower-greek lower-latin lower-roman lower low ltr marker maroon medium message-box middle mix move narrower '+
|
56
|
+
'navy ne-resize no-close-quote none no-open-quote no-repeat normal nowrap n-resize nw-resize oblique olive once open-quote outset '+
|
57
|
+
'outside overline pointer portrait pre print projection purple red relative repeat repeat-x repeat-y rgb ridge right right-side '+
|
58
|
+
'rightwards rtl run-in screen scroll semi-condensed semi-expanded separate se-resize show silent silver slower slow '+
|
59
|
+
'small small-caps small-caption smaller soft solid speech spell-out square s-resize static status-bar sub super sw-resize '+
|
60
|
+
'table-caption table-cell table-column table-column-group table-footer-group table-header-group table-row table-row-group teal '+
|
61
|
+
'text-bottom text-top thick thin top transparent tty tv ultra-condensed ultra-expanded underline upper-alpha uppercase upper-latin '+
|
62
|
+
'upper-roman url visible wait white wider w-resize x-fast x-high x-large x-loud x-low x-slow x-small x-soft xx-large xx-small yellow';
|
63
|
+
|
64
|
+
var fonts = '[mM]onospace [tT]ahoma [vV]erdana [aA]rial [hH]elvetica [sS]ans-serif [sS]erif [cC]ourier mono sans serif';
|
65
|
+
|
66
|
+
var statements = '!important !default';
|
67
|
+
var preprocessor = '@import @extend @debug @warn @if @for @while @mixin @include';
|
68
|
+
|
69
|
+
var r = SyntaxHighlighter.regexLib;
|
70
|
+
|
71
|
+
this.regexList = [
|
72
|
+
{ regex: r.multiLineCComments, css: 'comments' }, // multiline comments
|
73
|
+
{ regex: r.singleLineCComments, css: 'comments' }, // singleline comments
|
74
|
+
{ regex: r.doubleQuotedString, css: 'string' }, // double quoted strings
|
75
|
+
{ regex: r.singleQuotedString, css: 'string' }, // single quoted strings
|
76
|
+
{ regex: /\#[a-fA-F0-9]{3,6}/g, css: 'value' }, // html colors
|
77
|
+
{ regex: /\b(-?\d+)(\.\d+)?(px|em|pt|\:|\%|)\b/g, css: 'value' }, // sizes
|
78
|
+
{ regex: /\$\w+/g, css: 'variable' }, // variables
|
79
|
+
{ regex: new RegExp(this.getKeywords(statements), 'g'), css: 'color3' }, // statements
|
80
|
+
{ regex: new RegExp(this.getKeywords(preprocessor), 'g'), css: 'preprocessor' }, // preprocessor
|
81
|
+
{ regex: new RegExp(getKeywordsCSS(keywords), 'gm'), css: 'keyword' }, // keywords
|
82
|
+
{ regex: new RegExp(getValuesCSS(values), 'g'), css: 'value' }, // values
|
83
|
+
{ regex: new RegExp(this.getKeywords(fonts), 'g'), css: 'color1' } // fonts
|
84
|
+
];
|
85
|
+
};
|
86
|
+
|
87
|
+
Brush.prototype = new SyntaxHighlighter.Highlighter();
|
88
|
+
Brush.aliases = ['sass', 'scss'];
|
89
|
+
|
90
|
+
SyntaxHighlighter.brushes.Sass = Brush;
|
91
|
+
|
92
|
+
// CommonJS
|
93
|
+
typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
|
94
|
+
})();
|
@@ -0,0 +1,51 @@
|
|
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
|
+
// Contributed by Yegor Jbanov and David Bernard.
|
25
|
+
|
26
|
+
var keywords = 'val sealed case def true trait implicit forSome import match object null finally super ' +
|
27
|
+
'override try lazy for var catch throw type extends class while with new final yield abstract ' +
|
28
|
+
'else do if return protected private this package false';
|
29
|
+
|
30
|
+
var keyops = '[_:=><%#@]+';
|
31
|
+
|
32
|
+
this.regexList = [
|
33
|
+
{ regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments
|
34
|
+
{ regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments
|
35
|
+
{ regex: SyntaxHighlighter.regexLib.multiLineSingleQuotedString, css: 'string' }, // multi-line strings
|
36
|
+
{ regex: SyntaxHighlighter.regexLib.multiLineDoubleQuotedString, css: 'string' }, // double-quoted string
|
37
|
+
{ regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings
|
38
|
+
{ regex: /0x[a-f0-9]+|\d+(\.\d+)?/gi, css: 'value' }, // numbers
|
39
|
+
{ regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // keywords
|
40
|
+
{ regex: new RegExp(keyops, 'gm'), css: 'keyword' } // scala keyword
|
41
|
+
];
|
42
|
+
}
|
43
|
+
|
44
|
+
Brush.prototype = new SyntaxHighlighter.Highlighter();
|
45
|
+
Brush.aliases = ['scala'];
|
46
|
+
|
47
|
+
SyntaxHighlighter.brushes.Scala = Brush;
|
48
|
+
|
49
|
+
// CommonJS
|
50
|
+
typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
|
51
|
+
})();
|
@@ -0,0 +1,66 @@
|
|
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 funcs = 'abs avg case cast coalesce convert count current_timestamp ' +
|
25
|
+
'current_user day isnull left lower month nullif replace right ' +
|
26
|
+
'session_user space substring sum system_user upper user year';
|
27
|
+
|
28
|
+
var keywords = 'absolute action add after alter as asc at authorization begin bigint ' +
|
29
|
+
'binary bit by cascade char character check checkpoint close collate ' +
|
30
|
+
'column commit committed connect connection constraint contains continue ' +
|
31
|
+
'create cube current current_date current_time cursor database date ' +
|
32
|
+
'deallocate dec decimal declare default delete desc distinct double drop ' +
|
33
|
+
'dynamic else end end-exec escape except exec execute false fetch first ' +
|
34
|
+
'float for force foreign forward free from full function global goto grant ' +
|
35
|
+
'group grouping having hour ignore index inner insensitive insert instead ' +
|
36
|
+
'int integer intersect into is isolation key last level load local max min ' +
|
37
|
+
'minute modify move name national nchar next no numeric of off on only ' +
|
38
|
+
'open option order out output partial password precision prepare primary ' +
|
39
|
+
'prior privileges procedure public read real references relative repeatable ' +
|
40
|
+
'restrict return returns revoke rollback rollup rows rule schema scroll ' +
|
41
|
+
'second section select sequence serializable set size smallint static ' +
|
42
|
+
'statistics table temp temporary then time timestamp to top transaction ' +
|
43
|
+
'translation trigger true truncate uncommitted union unique update values ' +
|
44
|
+
'varchar varying view when where with work';
|
45
|
+
|
46
|
+
var operators = 'all and any between cross in join like not null or outer some';
|
47
|
+
|
48
|
+
this.regexList = [
|
49
|
+
{ regex: /--(.*)$/gm, css: 'comments' }, // one line and multiline comments
|
50
|
+
{ regex: SyntaxHighlighter.regexLib.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings
|
51
|
+
{ regex: SyntaxHighlighter.regexLib.multiLineSingleQuotedString, css: 'string' }, // single quoted strings
|
52
|
+
{ regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'color2' }, // functions
|
53
|
+
{ regex: new RegExp(this.getKeywords(operators), 'gmi'), css: 'color1' }, // operators and such
|
54
|
+
{ regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' } // keyword
|
55
|
+
];
|
56
|
+
};
|
57
|
+
|
58
|
+
Brush.prototype = new SyntaxHighlighter.Highlighter();
|
59
|
+
Brush.aliases = ['sql'];
|
60
|
+
|
61
|
+
SyntaxHighlighter.brushes.Sql = Brush;
|
62
|
+
|
63
|
+
// CommonJS
|
64
|
+
typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
|
65
|
+
})();
|
66
|
+
|
@@ -0,0 +1,56 @@
|
|
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 = 'AddHandler AddressOf AndAlso Alias And Ansi As Assembly Auto ' +
|
25
|
+
'Boolean ByRef Byte ByVal Call Case Catch CBool CByte CChar CDate ' +
|
26
|
+
'CDec CDbl Char CInt Class CLng CObj Const CShort CSng CStr CType ' +
|
27
|
+
'Date Decimal Declare Default Delegate Dim DirectCast Do Double Each ' +
|
28
|
+
'Else ElseIf End Enum Erase Error Event Exit False Finally For Friend ' +
|
29
|
+
'Function Get GetType GoSub GoTo Handles If Implements Imports In ' +
|
30
|
+
'Inherits Integer Interface Is Let Lib Like Long Loop Me Mod Module ' +
|
31
|
+
'MustInherit MustOverride MyBase MyClass Namespace New Next Not Nothing ' +
|
32
|
+
'NotInheritable NotOverridable Object On Option Optional Or OrElse ' +
|
33
|
+
'Overloads Overridable Overrides ParamArray Preserve Private Property ' +
|
34
|
+
'Protected Public RaiseEvent ReadOnly ReDim REM RemoveHandler Resume ' +
|
35
|
+
'Return Select Set Shadows Shared Short Single Static Step Stop String ' +
|
36
|
+
'Structure Sub SyncLock Then Throw To True Try TypeOf Unicode Until ' +
|
37
|
+
'Variant When While With WithEvents WriteOnly Xor';
|
38
|
+
|
39
|
+
this.regexList = [
|
40
|
+
{ regex: /'.*$/gm, css: 'comments' }, // one line comments
|
41
|
+
{ regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings
|
42
|
+
{ regex: /^\s*#.*$/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endregion
|
43
|
+
{ regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // vb keyword
|
44
|
+
];
|
45
|
+
|
46
|
+
this.forHtmlScript(SyntaxHighlighter.regexLib.aspScriptTags);
|
47
|
+
};
|
48
|
+
|
49
|
+
Brush.prototype = new SyntaxHighlighter.Highlighter();
|
50
|
+
Brush.aliases = ['vb', 'vbnet'];
|
51
|
+
|
52
|
+
SyntaxHighlighter.brushes.Vb = Brush;
|
53
|
+
|
54
|
+
// CommonJS
|
55
|
+
typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
|
56
|
+
})();
|