/plugin/codemirror/dist/modes/ |
D | livescript.min.js | 1 …regex&&a.match(g.regex)){b.next=g.next||b.next;return g.token}}a.next();return"error"}if(a.match(g… property
|
D | factor.min.js | 1 …regex:/#?!.*/,token:"comment"},{regex:/"""/,token:"string",next:"string3"},{regex:/(STRING:)(\s)/,… property
|
D | nsis.min.js | 1 …regex:/(?:[+-]?)(?:0x[\d,a-f]+)|(?:0o[0-7]+)|(?:0b[0,1]+)|(?:\d+.?\d*)/,token:"number"},{regex:/"(… property
|
D | rust.min.js | 1 …regex:/b?"/,token:"string",next:"string"},{regex:/b?r"/,token:"string",next:"string_raw"},{regex:/… property
|
D | dockerfile.min.js | 1 …regex:/^\s*#.*$/,sol:true,token:"comment"},{regex:c,token:[null,"keyword"],sol:true,next:"from"},{… property
|
D | handlebars.min.js | 1 …regex:/\{\{\{/,push:"handlebars_raw",token:"tag"},{regex:/\{\{!--/,push:"dash_comment",token:"comm… property
|
D | wast.min.js | 1 …regex:/[+\-]?(?:nan(?::0x[0-9a-fA-F]+)?|infinity|inf|0x[0-9a-fA-F]+\.?[0-9a-fA-F]*p[+\/-]?\d+|\d+(… property
|
/plugin/syntaxhighlighter3/sxh3/src/js/ |
D | shBrushAppleScript.js | 16 { regex: /(--|#).*$/gm, property 19 { regex: /\(\*(?:[\s\S]*?\(\*[\s\S]*?\*\))*[\s\S]*?\*\)/gm, // support nested comments property 22 { regex: /"[\s\S]*?"/gm, property 25 { regex: /(?:,|:|¬|'s\b|\(|\)|\{|\}|«|\b\w*»)/g, // operators property 28 { regex: /(-)?(\d)+(\.(\d)?)?(E\+(\d)+)?/g, // numbers property 31 { regex: /(?:&(amp;|gt;|lt;)?|=|� |>|<|≥|>=|≤|<=|\*|\+|-|\/|÷|\^)/g, property 34 …{ regex: /\b(?:and|as|div|mod|not|or|return(?!\s&)(ing)?|equals|(is(n't| not)? )?equal( to)?|does(… property 37 { regex: /\b\d+(st|nd|rd|th)\b/g, // ordinals property 40 …{ regex: /\b(?:about|above|against|around|at|below|beneath|beside|between|by|(apart|aside) from|(i… property 43 …{ regex: /\b(?:adding folder items to|after receiving|clipboard info|set the clipboard to|(the )?c… 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 …{ regex: new RegExp('(?:\\b'+verbs.replace(/ /g, '\\b|\\b')+')-[a-zA-Z_][a-zA-Z0-9_]*', 'gmi'), cs… property 45 …{ regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' }, // keywor… property [all …]
|
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 | 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
|
/plugin/syntaxhighlighter3/sxh3/pkg/scripts/ |
D | shBrushAppleScript.js | 32 { regex: /(--|#).*$/gm, property 35 { regex: /\(\*(?:[\s\S]*?\(\*[\s\S]*?\*\))*[\s\S]*?\*\)/gm, // support nested comments property 38 { regex: /"[\s\S]*?"/gm, property 41 { regex: /(?:,|:|¬|'s\b|\(|\)|\{|\}|«|\b\w*»)/g, // operators property 44 { regex: /(-)?(\d)+(\.(\d)?)?(E\+(\d)+)?/g, // numbers property 47 { regex: /(?:&(amp;|gt;|lt;)?|=|� |>|<|≥|>=|≤|<=|\*|\+|-|\/|÷|\^)/g, property 50 …{ regex: /\b(?:and|as|div|mod|not|or|return(?!\s&)(ing)?|equals|(is(n't| not)? )?equal( to)?|does(… property 53 { regex: /\b\d+(st|nd|rd|th)\b/g, // ordinals property 56 …{ regex: /\b(?:about|above|against|around|at|below|beneath|beside|between|by|(apart|aside) from|(i… property 59 …{ regex: /\b(?:adding folder items to|after receiving|clipboard info|set the clipboard to|(the )?c… 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 …{ regex: new RegExp('(?:\\b'+verbs.replace(/ /g, '\\b|\\b')+')-[a-zA-Z_][a-zA-Z0-9_]*', 'gmi'), cs… property 61 …{ regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' }, // keywor… property [all …]
|
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 | 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 | 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 | 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/dirtylittlehelper/mermaid/editor/docs/ |
D | 42.42.js | 1 …regex:/@irregular_keywords(?!@IDENTRST)/,action:{token:"keyword"}},{regex:/@IDENTFST@IDENTRST*[<!\… property
|
/plugin/asciidocjs/node_modules/is-regex/ |
D | CHANGELOG.md | 8 ## [v1.1.4](https://github.com/inspect-js/is-regex/compare/v1.1.3...v1.1.4) - 2021-08-05 12 … `core-js`, `eslint`, `tape` [`4b17cad`](https://github.com/inspect-js/is-regex/commit/4b17cad8496… 13 …the presence of symbol shams [`2dad4af`](https://github.com/inspect-js/is-regex/commit/2dad4afffa1… 15 ## [v1.1.3](https://github.com/inspect-js/is-regex/compare/v1.1.2...v1.1.3) - 2021-05-07 19 …e/run`; use `codecov` action [`c681ab9`](https://github.com/inspect-js/is-regex/commit/c681ab99c07… 20 …mbol.toStringTag` is shammed [`ca019fd`](https://github.com/inspect-js/is-regex/commit/ca019fdb828… 21 …slint-config`, `aud`, `tape` [`605a66f`](https://github.com/inspect-js/is-regex/commit/605a66f2789… 22 - [readme] add actions and codecov badges [`8d7c6f0`](https://github.com/inspect-js/is-regex/commit… 23 - [meta] use `prepublishOnly` script for npm 7+ [`8e50e91`](https://github.com/inspect-js/is-regex/… 24 - [Deps] update `has-symbols` [`4742c81`](https://github.com/inspect-js/is-regex/commit/4742c81260c… [all …]
|
/plugin/syntaxhighlighter4/dist/ |
D | syntaxhighlighter.js | 462 regex = XRegExp("(?<name>[\\w-]+)" + "\\s*:\\s*" + "(?<value>" + "[\\w%#-]+|" + // word variable 468 while ((match = XRegExp.exec(str, regex, pos)) != null) { 631 function augment(regex, captureNames, xSource, xFlags, isInternalOnly) { 634 regex[REGEX_DATA] = { 639 return regex; 643 if (regex.__proto__) { 644 regex.__proto__ = XRegExp.prototype; field 650 regex[p] = XRegExp.prototype[p]; 654 regex[REGEX_DATA].source = xSource; 656 regex[REGEX_DATA].flags = xFlags ? xFlags.split('').sort().join('') : xFlags; [all …]
|