Home
last modified time | relevance | path

Searched defs:css (Results 51 – 75 of 176) sorted by relevance

12345678

/plugin/syntaxhighlighter3/sxh3/src/js/
DshBrushJavaFX.js24 { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, property
25 { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, property
26 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, property
27 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, property
28 …{ regex: /(-?\.?)(\b(\d*\.?\d+|\d+\.?\d*)(e[+-]?\d+)?|0x[a-f\d]+)\b\.?/gi, css: 'color2' }, // num… property
29 { regex: new RegExp(this.getKeywords(datatypes), 'gm'), css: 'variable' }, // datatypes property
30 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } property
DshBrushSql.js33 …{ regex: /--(.*)$/gm, css: 'comments' }, // one li… property
34 …{ regex: /\/\*([^\*][\s\S]*?)?\*\//gm, css: 'comments' }, // multi … property
35 …{ regex: SyntaxHighlighter.regexLib.multiLineDoubleQuotedString, css: 'string' }, // double… property
36 …{ regex: SyntaxHighlighter.regexLib.multiLineSingleQuotedString, css: 'string' }, // single… property
37 …{ regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'color2' }, // functi… property
38 …{ regex: new RegExp(this.getKeywords(operators), 'gmi'), css: 'color1' }, // operat… property
39 …{ regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' } // keyword property
DshBrushErlang.js19 { regex: new RegExp("[A-Z][A-Za-z0-9_]+", 'g'), css: 'constants' }, property
20 { regex: new RegExp("\\%.+", 'gm'), css: 'comments' }, property
21 { regex: new RegExp("\\?[A-Za-z0-9_]+", 'g'), css: 'preprocessor' }, property
22 { regex: new RegExp("[a-z0-9_]+:[a-z0-9_]+", 'g'), css: 'functions' }, property
23 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, property
24 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, property
25 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } property
DshBrushCSharp.js29 …{ regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments property
30 { regex: /@"(?:[^"]|"")*"/g, css: 'string' }, // @-quoted strings property
31 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings property
32 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings property
33 …{ regex: /^\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endr… property
34 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // c# keyword property
35 …{ regex: /\bpartial(?=\s+(?:class|interface|struct)\b)/g, css: 'keyword' }, // contextual keywor… property
36 … { regex: /\byield(?=\s+(?:return|break)\b)/g, css: 'keyword' } // contextual keyword: 'yield' property
DshBrushJScript.js18 { regex: r.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings property
19 { regex: r.multiLineSingleQuotedString, css: 'string' }, // single quoted strings property
20 { regex: r.singleLineCComments, css: 'comments' }, // one line comments property
21 { regex: r.multiLineCComments, css: 'comments' }, // multiline comments property
22 …{ regex: /\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endreg… property
23 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords property
DshBrushDiff.js9 { regex: /^\+\+\+ .*$/gm, css: 'color2' }, // new file property
10 { regex: /^\-\-\- .*$/gm, css: 'color2' }, // old file property
11 { regex: /^\s.*$/gm, css: 'color1' }, // unchanged property
12 { regex: /^@@.*@@.*$/gm, css: 'variable' }, // location property
13 { regex: /^\+.*$/gm, css: 'string' }, // additions property
14 { regex: /^\-.*$/gm, css: 'color3' } // deletions property
DshBrushBash.js41 { regex: /^#!.*$/gm, css: 'preprocessor bold' }, property
42 { regex: /\/[\w-\/]+/gm, css: 'plain' }, property
43 …{ regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, // one line comme… property
44 …{ regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strin… property
45 …{ regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strin… property
46 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // keywords property
47 { regex: new RegExp(this.getKeywords(commands), 'gm'), css: 'functions' }, // commands property
DshBrushTypeScript.js22 { regex: r.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings property
23 { regex: r.multiLineSingleQuotedString, css: 'string' }, // single quoted strings property
24 { regex: r.singleLineCComments, css: 'comments' }, // one line comments property
25 { regex: r.multiLineCComments, css: 'comments' }, // multiline comments property
26 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords property
DshBrushVb.js24 { regex: /'.*$/gm, css: 'comments' }, // one line comments property
25 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings property
26 …{ regex: /^\s*#.*$/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endr… property
27 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // vb keyword property
/plugin/syntaxhighlighter3/sxh3/pkg/scripts/
DshBrushColdFusion.js83 { regex: new RegExp('--(.*)$', 'gm'), css: 'comments' }, // one line and multiline comments property
84 { regex: SyntaxHighlighter.regexLib.xmlComments, css: 'comments' }, // single quoted strings property
85 …{ regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted stri… property
86 …{ regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted stri… property
87 { regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'functions' }, // functions property
88 … { regex: new RegExp(this.getKeywords(operators), 'gmi'), css: 'color1' }, // operators and such property
89 { regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' } // keyword property
DshBrushJavaFX.js40 { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, property
41 { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, property
42 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, property
43 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, property
44 …{ regex: /(-?\.?)(\b(\d*\.?\d+|\d+\.?\d*)(e[+-]?\d+)?|0x[a-f\d]+)\b\.?/gi, css: 'color2' }, // num… property
45 { regex: new RegExp(this.getKeywords(datatypes), 'gm'), css: 'variable' }, // datatypes property
46 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } property
DshBrushCSharp.js45 …{ regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments property
46 { regex: /@"(?:[^"]|"")*"/g, css: 'string' }, // @-quoted strings property
47 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings property
48 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings property
49 …{ regex: /^\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endr… property
50 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // c# keyword property
51 …{ regex: /\bpartial(?=\s+(?:class|interface|struct)\b)/g, css: 'keyword' }, // contextual keywor… property
52 … { regex: /\byield(?=\s+(?:return|break)\b)/g, css: 'keyword' } // contextual keyword: 'yield' property
DshBrushJScript.js34 { regex: r.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings property
35 { regex: r.multiLineSingleQuotedString, css: 'string' }, // single quoted strings property
36 { regex: r.singleLineCComments, css: 'comments' }, // one line comments property
37 { regex: r.multiLineCComments, css: 'comments' }, // multiline comments property
38 …{ regex: /\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endreg… property
39 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords property
DshBrushDiff.js25 { regex: /^\+\+\+ .*$/gm, css: 'color2' }, // new file property
26 { regex: /^\-\-\- .*$/gm, css: 'color2' }, // old file property
27 { regex: /^\s.*$/gm, css: 'color1' }, // unchanged property
28 { regex: /^@@.*@@.*$/gm, css: 'variable' }, // location property
29 { regex: /^\+.*$/gm, css: 'string' }, // additions property
30 { regex: /^\-.*$/gm, css: 'color3' } // deletions property
DshBrushBash.js57 { regex: /^#!.*$/gm, css: 'preprocessor bold' }, property
58 { regex: /\/[\w-\/]+/gm, css: 'plain' }, property
59 …{ regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, // one line comme… property
60 …{ regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strin… property
61 …{ regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strin… property
62 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // keywords property
63 { regex: new RegExp(this.getKeywords(commands), 'gm'), css: 'functions' }, // commands property
DshBrushTypeScript.js38 { regex: r.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings property
39 { regex: r.multiLineSingleQuotedString, css: 'string' }, // single quoted strings property
40 { regex: r.singleLineCComments, css: 'comments' }, // one line comments property
41 { regex: r.multiLineCComments, css: 'comments' }, // multiline comments property
42 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords property
/plugin/syntaxhighlighter/Uncompressed/
DshBrushJScript.js10 { regex: dp.sh.RegexLib.SingleLineCComments, css: 'comment' }, // one line comments property
11 { regex: dp.sh.RegexLib.MultiLineCComments, css: 'comment' }, // multiline comments property
12 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // double quoted strings property
13 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // single quoted strings property
14 …{ regex: new RegExp('^\\s*#.*', 'gm'), css: 'preprocessor' }, // preprocessor tags like #reg… property
15 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' } // keywords property
DshBrushSql.js28 { regex: new RegExp('--(.*)$', 'gm'), css: 'comment' }, // one line and multiline comments property
29 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // double quoted strings property
30 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // single quoted strings property
31 { regex: new RegExp(this.GetKeywords(funcs), 'gmi'), css: 'func' }, // functions property
32 { regex: new RegExp(this.GetKeywords(operators), 'gmi'), css: 'op' }, // operators and such property
33 { regex: new RegExp(this.GetKeywords(keywords), 'gmi'), css: 'keyword' } // keyword property
DshBrushCSharp.js19 { regex: dp.sh.RegexLib.SingleLineCComments, css: 'comment' }, // one line comments property
20 { regex: dp.sh.RegexLib.MultiLineCComments, css: 'comment' }, // multiline comments property
21 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // strings property
22 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // strings property
23 …{ regex: new RegExp('^\\s*#.*', 'gm'), css: 'preprocessor' }, // preprocessor tags like #reg… property
24 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' } // c# keyword property
DshBrushVb.js19 { regex: new RegExp('\'.*$', 'gm'), css: 'comment' }, // one line comments property
20 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // strings property
21 …{ regex: new RegExp('^\\s*#.*', 'gm'), css: 'preprocessor' }, // preprocessor tags like #reg… property
22 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' } // c# keyword property
/plugin/animation/scripts/
DshBrushR.js11 { regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, property
12 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, property
13 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, property
14 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, property
15 { regex: new RegExp(this.getKeywords(constants), 'gm'), css: 'constants' }, property
16 { regex: /[\w._]+[ \t]*(?=\()/gm, css: 'functions' }, property
/plugin/syntaxhighlighter/Scripts/
DshBrushCSharp.js9 …tual void while';this.regexList=[{regex:dp.sh.RegexLib.SingleLineCComments,css:'comment'},{regex:d… property
DshBrushJScript.js9 …tile while with';this.regexList=[{regex:dp.sh.RegexLib.SingleLineCComments,css:'comment'},{regex:d… property
DshBrushSql.js9 … not null or outer some';this.regexList=[{regex:new RegExp('--(.*)$','gm'),css:'comment'},{regex:d… property
DshBrushVb.js9 … WithEvents WriteOnly Xor';this.regexList=[{regex:new RegExp('\'.*$','gm'),css:'comment'},{regex:d… property

12345678