Lines Matching defs:css
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
58 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, property
60 { regex: /(?:&|[$@%*]|\$#)\$?[a-zA-Z_](\w+|::)*/g, css: 'variable' }, property
61 { regex: /\b__(?:END|DATA)__\b[\s\S]*$/g, css: 'comments' }, property
64 { regex: /(^|\n)=\w[\s\S]*?(\n=cut\s*(?=\n)|$)/g, css: 'comments' }, // pod property
66 { regex: new RegExp(this.getKeywords(funcs), 'gm'), css: 'functions' }, property
67 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } property