| /plugin/syntaxhighlighter3/sxh3/src/js/ ! |
| D | shBrushAppleScript.js | 17 css: 'comments' }, property 20 css: 'comments' }, property 23 css: 'string' }, property 26 css: 'color1' }, property 29 css: 'color1' }, property 32 css: 'color2' }, property 35 css: 'keyword' }, property 38 css: 'keyword' }, property 41 css: 'color3' }, property 44 css: 'color4' }, property [all …]
|
| D | shBrushPerl.js | 45 …{ regex: /(<<|<<)((\w+)|(['"])(.+?)\4)[\s\S]+?\n\3\5\n/g, css: 'string' }, // here doc (mayb… property 46 { regex: /#.*$/gm, css: 'comments' }, property 47 { regex: /^#!.*\n/g, css: 'preprocessor' }, // shebang property 48 { regex: /-?\w+(?=\s*=(>|>))/g, css: 'string' }, // fat comma property 51 { regex: /\bq[qwxr]?\([\s\S]*?\)/g, css: 'string' }, // quote-like operators () property 52 { regex: /\bq[qwxr]?\{[\s\S]*?\}/g, css: 'string' }, // quote-like operators {} property 53 { regex: /\bq[qwxr]?\[[\s\S]*?\]/g, css: 'string' }, // quote-like operators [] property 54 { regex: /\bq[qwxr]?(<|<)[\s\S]*?(>|>)/g, css: 'string' }, // quote-like operators <> property 55 { regex: /\bq[qwxr]?([^\w({<[])[\s\S]*?\1/g, css: 'string' }, // quote-like operators non-paired property 57 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, property [all …]
|
| D | shBrushHaxe.js | 14 { regex:SyntaxHighlighter.regexLib.singleLineCComments , css:'comments' }, property 16 { regex:SyntaxHighlighter.regexLib.multiLineCComments , css:'comments' }, property 18 { regex:SyntaxHighlighter.regexLib.doubleQuotedString , css:'string' }, property 20 { regex:SyntaxHighlighter.regexLib.singleQuotedString , css:'string' }, property 22 { regex:/\b([\d]+(\.[\d]+)?|0x[a-f0-9]+)\b/gi , css:'value' }, property 24 { regex:new RegExp ( this.getKeywords ( inits ) , 'gm' ) , css:'color3' }, property 26 { regex:new RegExp ( this.getKeywords ( keywords ) , 'gm' ) , css:'keyword' }, property 28 { regex:new RegExp ( 'var' , 'gm' ) , css:'variable' }, property 30 { regex:new RegExp ( 'trace' , 'gm' ) , css:'color1' }, property 32 { regex:new RegExp ( '#if' , 'gm' ) , css:'comments' }, property [all …]
|
| D | shBrushPowerShell.js | 34 …{ regex: new RegExp('^\\s*#[#\\s]*\\.('+this.getKeywords(commenthelp)+').*$', 'gim'), css: 'prep… property 35 …{ regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, // on… property 36 …{ regex: /(<|<)#[\s\S]*?#(>|>)/gm, css: 'comments here' }, // multi-line co… property 38 …{ regex: new RegExp('@"\\n[\\s\\S]*?\\n"@', 'gm'), css: 'script string here' }, // do… property 39 …{ regex: new RegExp("@'\\n[\\s\\S]*?\\n'@", 'gm'), css: 'script string single here' }, … property 40 …{ regex: new RegExp('"(?:\\$\\([^\\)]*\\)|[^"]|`"|"")*[^`]"','g'), css: 'string' }, //… property 41 …{ regex: new RegExp("'(?:[^']|'')*'", 'g'), css: 'string single' }, // single quo… property 43 …{ regex: new RegExp('[\\$|@|@@](?:(?:global|script|private|env):)?[A-Z0-9_]+', 'gi'), css: 'vari… property 44 …(?:\\b'+verbs.replace(/ /g, '\\b|\\b')+')-[a-zA-Z_][a-zA-Z0-9_]*', 'gmi'), css: 'functions' }, … property 45 …{ regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' }, // keywor… property [all …]
|
| D | shBrushPython.js | 26 { regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, property 27 { regex: /^\s*@\w+/gm, css: 'decorator' }, property 28 { regex: /(['\"]{3})([^\1])*?\1/gm, css: 'comments' }, property 29 { regex: /"(?!")(?:\.|\\\"|[^\""\n])*"/gm, css: 'string' }, property 30 { regex: /'(?!')(?:\.|(\\\')|[^\''\n])*'/gm, css: 'string' }, property 31 { regex: /\+|\-|\*|\/|\%|=|==/gm, css: 'keyword' }, property 32 { regex: /\b\d+\.?\w*/g, css: 'value' }, property 33 { regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'functions' }, property 34 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, property 35 { regex: new RegExp(this.getKeywords(special), 'gm'), css: 'color1' } property
|
| D | shBrushGroovy.js | 29 …{ regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line commen… property 30 …{ regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comme… property 31 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings property 32 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings property 33 { regex: /""".*"""/g, css: 'string' }, // GStrings property 34 { regex: new RegExp('\\b([\\d]+(\\.[\\d]+)?|0x[a-f0-9]+)\\b', 'gi'), css: 'value' }, // numbers property 35 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // goovy keyword property 36 { regex: new RegExp(this.getKeywords(types), 'gm'), css: 'color1' }, // goovy/java type property 37 { regex: new RegExp(this.getKeywords(constants), 'gm'), css: 'constants' }, // constants property 38 { regex: new RegExp(this.getKeywords(methods), 'gm'), css: 'functions' } // methods property
|
| D | shBrushSass.js | 61 { regex: r.multiLineCComments, css: 'comments' }, // multiline comments property 62 { regex: r.singleLineCComments, css: 'comments' }, // singleline comments property 63 { regex: r.doubleQuotedString, css: 'string' }, // double quoted strings property 64 { regex: r.singleQuotedString, css: 'string' }, // single quoted strings property 65 { regex: /\#[a-fA-F0-9]{3,6}/g, css: 'value' }, // html colors property 66 { regex: /\b(-?\d+)(\.\d+)?(px|em|rem|pt|\:|\%|)\b/g, css: 'value' }, // sizes property 67 { regex: /\$[\w-]+/g, css: 'variable' }, // variables property 68 …{ regex: new RegExp(getKeywordsPrependedBy(statements, '!'), 'g'), css: 'color3' }, // statements property 69 …{ regex: new RegExp(getKeywordsPrependedBy(preprocessor, '@'), 'g'), css: 'preprocessor' }, // pre… property 70 { regex: new RegExp(getKeywordsCSS(keywords), 'gm'), css: 'keyword' }, // keywords property [all …]
|
| D | shBrushAS3.js | 22 { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments property 23 … { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments property 24 …{ regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings property 25 …{ regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings property 26 { regex: /\b([\d]+(\.[\d]+)?|0x[a-f0-9]+)\b/gi, css: 'value' }, // numbers property 27 { regex: new RegExp(this.getKeywords(inits), 'gm'), css: 'color3' }, // initializations property 28 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // keywords property 29 { regex: new RegExp('var', 'gm'), css: 'variable' }, // variable property 30 { regex: new RegExp('trace', 'gm'), css: 'color1' } // trace property
|
| /plugin/syntaxhighlighter3/sxh3/pkg/scripts/ ! |
| D | shBrushAppleScript.js | 33 css: 'comments' }, property 36 css: 'comments' }, property 39 css: 'string' }, property 42 css: 'color1' }, property 45 css: 'color1' }, property 48 css: 'color2' }, property 51 css: 'keyword' }, property 54 css: 'keyword' }, property 57 css: 'color3' }, property 60 css: 'color4' }, property [all …]
|
| D | shBrushPerl.js | 61 …{ regex: /(<<|<<)((\w+)|(['"])(.+?)\4)[\s\S]+?\n\3\5\n/g, css: 'string' }, // here doc (mayb… property 62 { regex: /#.*$/gm, css: 'comments' }, property 63 { regex: /^#!.*\n/g, css: 'preprocessor' }, // shebang property 64 { regex: /-?\w+(?=\s*=(>|>))/g, css: 'string' }, // fat comma property 67 { regex: /\bq[qwxr]?\([\s\S]*?\)/g, css: 'string' }, // quote-like operators () property 68 { regex: /\bq[qwxr]?\{[\s\S]*?\}/g, css: 'string' }, // quote-like operators {} property 69 { regex: /\bq[qwxr]?\[[\s\S]*?\]/g, css: 'string' }, // quote-like operators [] property 70 { regex: /\bq[qwxr]?(<|<)[\s\S]*?(>|>)/g, css: 'string' }, // quote-like operators <> property 71 { regex: /\bq[qwxr]?([^\w({<[])[\s\S]*?\1/g, css: 'string' }, // quote-like operators non-paired property 73 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, property [all …]
|
| D | shBrushHaxe.js | 30 { regex:SyntaxHighlighter.regexLib.singleLineCComments , css:'comments' }, property 32 { regex:SyntaxHighlighter.regexLib.multiLineCComments , css:'comments' }, property 34 { regex:SyntaxHighlighter.regexLib.doubleQuotedString , css:'string' }, property 36 { regex:SyntaxHighlighter.regexLib.singleQuotedString , css:'string' }, property 38 { regex:/\b([\d]+(\.[\d]+)?|0x[a-f0-9]+)\b/gi , css:'value' }, property 40 { regex:new RegExp ( this.getKeywords ( inits ) , 'gm' ) , css:'color3' }, property 42 { regex:new RegExp ( this.getKeywords ( keywords ) , 'gm' ) , css:'keyword' }, property 44 { regex:new RegExp ( 'var' , 'gm' ) , css:'variable' }, property 46 { regex:new RegExp ( 'trace' , 'gm' ) , css:'color1' }, property 48 { regex:new RegExp ( '#if' , 'gm' ) , css:'comments' }, property [all …]
|
| D | shBrushPowerShell.js | 50 …{ regex: new RegExp('^\\s*#[#\\s]*\\.('+this.getKeywords(commenthelp)+').*$', 'gim'), css: 'prep… property 51 …{ regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, // on… property 52 …{ regex: /(<|<)#[\s\S]*?#(>|>)/gm, css: 'comments here' }, // multi-line co… property 54 …{ regex: new RegExp('@"\\n[\\s\\S]*?\\n"@', 'gm'), css: 'script string here' }, // do… property 55 …{ regex: new RegExp("@'\\n[\\s\\S]*?\\n'@", 'gm'), css: 'script string single here' }, … property 56 …{ regex: new RegExp('"(?:\\$\\([^\\)]*\\)|[^"]|`"|"")*[^`]"','g'), css: 'string' }, //… property 57 …{ regex: new RegExp("'(?:[^']|'')*'", 'g'), css: 'string single' }, // single quo… property 59 …{ regex: new RegExp('[\\$|@|@@](?:(?:global|script|private|env):)?[A-Z0-9_]+', 'gi'), css: 'vari… property 60 …(?:\\b'+verbs.replace(/ /g, '\\b|\\b')+')-[a-zA-Z_][a-zA-Z0-9_]*', 'gmi'), css: 'functions' }, … property 61 …{ regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' }, // keywor… property [all …]
|
| D | shBrushGroovy.js | 45 …{ regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line commen… property 46 …{ regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comme… property 47 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings property 48 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings property 49 { regex: /""".*"""/g, css: 'string' }, // GStrings property 50 { regex: new RegExp('\\b([\\d]+(\\.[\\d]+)?|0x[a-f0-9]+)\\b', 'gi'), css: 'value' }, // numbers property 51 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // goovy keyword property 52 { regex: new RegExp(this.getKeywords(types), 'gm'), css: 'color1' }, // goovy/java type property 53 { regex: new RegExp(this.getKeywords(constants), 'gm'), css: 'constants' }, // constants property 54 { regex: new RegExp(this.getKeywords(methods), 'gm'), css: 'functions' } // methods property
|
| D | shBrushPython.js | 42 { regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, property 43 { regex: /^\s*@\w+/gm, css: 'decorator' }, property 44 { regex: /(['\"]{3})([^\1])*?\1/gm, css: 'comments' }, property 45 { regex: /"(?!")(?:\.|\\\"|[^\""\n])*"/gm, css: 'string' }, property 46 { regex: /'(?!')(?:\.|(\\\')|[^\''\n])*'/gm, css: 'string' }, property 47 { regex: /\+|\-|\*|\/|\%|=|==/gm, css: 'keyword' }, property 48 { regex: /\b\d+\.?\w*/g, css: 'value' }, property 49 { regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'functions' }, property 50 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, property 51 { regex: new RegExp(this.getKeywords(special), 'gm'), css: 'color1' } property
|
| D | shBrushSass.js | 77 { regex: r.multiLineCComments, css: 'comments' }, // multiline comments property 78 { regex: r.singleLineCComments, css: 'comments' }, // singleline comments property 79 { regex: r.doubleQuotedString, css: 'string' }, // double quoted strings property 80 { regex: r.singleQuotedString, css: 'string' }, // single quoted strings property 81 { regex: /\#[a-fA-F0-9]{3,6}/g, css: 'value' }, // html colors property 82 { regex: /\b(-?\d+)(\.\d+)?(px|em|rem|pt|\:|\%|)\b/g, css: 'value' }, // sizes property 83 { regex: /\$[\w-]+/g, css: 'variable' }, // variables property 84 …{ regex: new RegExp(getKeywordsPrependedBy(statements, '!'), 'g'), css: 'color3' }, // statements property 85 …{ regex: new RegExp(getKeywordsPrependedBy(preprocessor, '@'), 'g'), css: 'preprocessor' }, // pre… property 86 { regex: new RegExp(getKeywordsCSS(keywords), 'gm'), css: 'keyword' }, // keywords property [all …]
|
| D | shBrushAS3.js | 38 { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments property 39 … { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments property 40 …{ regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings property 41 …{ regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings property 42 { regex: /\b([\d]+(\.[\d]+)?|0x[a-f0-9]+)\b/gi, css: 'value' }, // numbers property 43 { regex: new RegExp(this.getKeywords(inits), 'gm'), css: 'color3' }, // initializations property 44 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // keywords property 45 { regex: new RegExp('var', 'gm'), css: 'variable' }, // variable property 46 { regex: new RegExp('trace', 'gm'), css: 'color1' } // trace property
|
| D | shBrushJava.js | 33 { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments property 34 { regex: /\/\*([^\*][\s\S]*?)?\*\//gm, css: 'comments' }, // multiline comments property 35 { regex: /\/\*(?!\*\/)\*[\s\S]*?\*\//gm, css: 'preprocessor' }, // documentation comments property 36 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings property 37 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings property 38 { regex: /\b([\d]+(\.[\d]+)?|0x[a-f0-9]+)\b/gi, css: 'value' }, // numbers property 39 { regex: /(?!\@interface\b)\@[\$\w]+\b/g, css: 'color1' }, // annotation @anno property 40 { regex: /\@interface\b/g, css: 'color2' }, // @interface keyword property 41 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // java keyword property
|
| /plugin/syntaxhighlighter4/dist/ ! |
| D | syntaxhighlighter.js | 3727 left: { regex: regexGroup.left, css: 'script' }, property 3728 right: { regex: regexGroup.right, css: 'script' }, property 3764 css: 'comments' property 3767 css: 'comments' property 3770 css: 'string' property 3773 css: 'color1' property 3776 css: 'color1' property 3779 css: 'color2' property 3782 css: 'keyword' property 3785 css: 'keyword' property [all …]
|
| /plugin/syntaxhighlighter/Uncompressed/ ! |
| D | shBrushJava.js | 12 { regex: dp.sh.RegexLib.SingleLineCComments, css: 'comment' }, // one line comments property 13 { regex: dp.sh.RegexLib.MultiLineCComments, css: 'comment' }, // multiline comments property 14 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // strings property 15 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // strings property 16 { regex: new RegExp('\\b([\\d]+(\\.[\\d]+)?|0x[a-f0-9]+)\\b', 'gi'), css: 'number' }, // numbers property 17 …{ regex: new RegExp('(?!\\@interface\\b)\\@[\\$\\w]+\\b', 'g'), css: 'annotation' }, // annotati… property 18 { regex: new RegExp('\\@interface\\b', 'g'), css: 'keyword' }, // @interface keyword property 19 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' } // java keyword property
|
| D | shBrushPython.js | 11 { regex: dp.sh.RegexLib.SingleLinePerlComments, css: 'comment' }, property 12 { regex: new RegExp("^\\s*@\\w+", 'gm'), css: 'decorator' }, property 13 { regex: new RegExp("(['\"]{3})([^\\1])*?\\1", 'gm'), css: 'comment' }, property 14 { regex: new RegExp('"(?!")(?:\\.|\\\\\\"|[^\\""\\n\\r])*"', 'gm'), css: 'string' }, property 15 { regex: new RegExp("'(?!')*(?:\\.|(\\\\\\')|[^\\''\\n\\r])*'", 'gm'), css: 'string' }, property 16 { regex: new RegExp("\\b\\d+\\.?\\w*", 'g'), css: 'number' }, property 17 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' }, property 18 { regex: new RegExp(this.GetKeywords(special), 'gm'), css: 'special' } property
|
| D | shBrushDelphi.js | 17 …{ regex: new RegExp('\\(\\*[\\s\\S]*?\\*\\)', 'gm'), css: 'comment' }, // multiline comments … property 18 …{ regex: new RegExp('{(?!\\$)[\\s\\S]*?}', 'gm'), css: 'comment' }, // multiline comments { } property 19 { regex: dp.sh.RegexLib.SingleLineCComments, css: 'comment' }, // one line property 20 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // strings property 21 …{ regex: new RegExp('\\{\\$[a-zA-Z]+ .+\\}', 'g'), css: 'directive' }, // Compiler Directives … property 22 { regex: new RegExp('\\b[\\d\\.]+\\b', 'g'), css: 'number' }, // numbers 12345 property 23 { regex: new RegExp('\\$[a-zA-Z0-9]+\\b', 'g'), css: 'number' }, // numbers $F5D3 property 24 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' } // keyword property
|
| /plugin/syntaxhighlighter/Scripts/ ! |
| D | shBrushDelphi.js | 9 …teln xor';this.regexList=[{regex:new RegExp('\\(\\*[\\s\\S]*?\\*\\)','gm'),css:'comment'},{regex:n… property
|
| D | shBrushJava.js | 9 … volatile while';this.regexList=[{regex:dp.sh.RegexLib.SingleLineCComments,css:'comment'},{regex:d… property
|
| D | shBrushPython.js | 10 this.regexList=[{regex:dp.sh.RegexLib.SingleLinePerlComments,css:'comment'},{regex:new RegExp("^\\s… property
|
| D | shBrushCss.js | 9 …on '+'background-repeat background baseline bbox border-collapse border-color border-spacing borde…
|