Searched refs:mustEscape (Results 1 – 6 of 6) sorted by relevance
| /plugin/asciidocjs/node_modules/pug-attrs/ |
| D | index.js | 29 typeof attr.mustEscape === 'boolean'; 46 function addAttribute(key, val, mustEscape, buf) { argument 49 var str = stringify(runtime.attr(key, toConstant(val), mustEscape, options.terse)); 58 if (mustEscape) { 65 …buf.push(options.runtime('attr') + '("' + key + '", ' + val + ', ' + stringify(mustEscape) + ', ' … 67 if (mustEscape) { 78 var mustEscape = attr.mustEscape; 82 classEscaping.push(mustEscape); 91 addAttribute(key, val, mustEscape, buf);
|
| D | README.md | 29 `attrs` is an array of attributes, with each attribute having the form of `{ name, val, mustEscape … 38 {name: 'foo', val: '"bar"', mustEscape: true }, 39 {name: 'baz', val: 'getBaz()', mustEscape: true }, 40 {name: 'quux', val: true, mustEscape: false}
|
| /plugin/asciidocjs/node_modules/pug-parser/ |
| D | index.js | 300 mustEscape: tok.mustEscape !== false, property 497 … assert(typeof tok.mustEscape === 'boolean', 'Please update to the newest version of pug-lexer.'); 502 mustEscape: tok.mustEscape !== false, property 632 mustEscape: false, 966 mustEscape: tok.mustEscape !== false, property 1079 mustEscape: false property 1184 mustEscape: tok.mustEscape !== false property
|
| D | README.md | 63 "mustEscape": true
|
| /plugin/asciidocjs/node_modules/pug-lexer/ |
| D | index.js | 1006 tok.mustEscape = flags.charAt(0) === '='; 1118 tok.mustEscape = valueResponse.mustEscape; 1122 tok.mustEscape = true; 1262 return { val: val, mustEscape: escapeAttr, remainingSource: str.substr(i) };
|
| /plugin/asciidocjs/node_modules/pug-code-gen/ |
| D | index.js | 670 if (code.mustEscape !== false) val = this.runtime('escape') + '(' + val + ')';
|