Lines Matching defs:input
8 { input : /({|}|\(|\))/g, output : '<b>$1</b>' }, // Brackets property
9 { input : /(\*|\+|-)/g, output : '<b>$1</b>' }, // Operator property
10 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : "<s>\"$1$2</s>" }, // strings double property
11 { input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>' }, // strings single property
12 { input : /\b([\d]+)\b/g, output : '<ins>$1</ins>' }, // Numbers property
13 { input : /#(.*?)(<br>|<\/P>)/g, output : '<i>#$1</i>$2' }, // Directives and Includes property
14 { input : /(\$[\w\.]*)/g, output : '<var>$1</var>' }, // vars property
15 { input : /(_[\w\.]*)/g, output : '<a>$1</a>' }, // underscored word property
16 { input : /(\@[\w\.]*)/g, output : '<em>$1</em>' }, // Macros property
17 …{ input : /\b(Abs|ACos|AdlibDisable|AdlibEnable|Asc|AscW|ASin|Assign|ATan|AutoItSetOption|AutoItWi… property
18 { input : /\B;(.*?)(<br>|<\/P>)/g, output : '<cite>;$1</cite>$2' }, // comments property
19 { input : /#CS(.*?)#CE/g, output : '<cite>#CS$1#CE</cite>' } // Block Comments property
25 { input : '\'',output : '\'$0\'' }, property
26 { input : '"', output : '"$0"' }, property
27 { input : '(', output : '\($0\)' }, property
28 { input : '[', output : '\[$0\]' }, property
29 { input : '{', output : '{\n\t$0\n}' } property