Home
last modified time | relevance | path

Searched refs:mustEscape (Results 1 – 6 of 6) sorted by relevance

/plugin/asciidocjs/node_modules/pug-attrs/
Dindex.js29 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);
DREADME.md29 `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/
Dindex.js300 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
DREADME.md63 "mustEscape": true
/plugin/asciidocjs/node_modules/pug-lexer/
Dindex.js1006 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/
Dindex.js670 if (code.mustEscape !== false) val = this.runtime('escape') + '(' + val + ')';