Lines Matching defs:output
7 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>' }, // strings double quote property
8 { input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>' }, // strings single quote property
9 …|switch|var|with|catch|boolean|int|try|false|throws|null|true|goto)\b/g, output : '<b>$1</b>' }, /… property
10 …|onload|toString|onunload|unescape|open|valueOf|window|onmouseover)\b/g, output : '<u>$1</u>' }, /… property
11 { input : /([^:]|^)\/\/(.*?)(<br|<\/P)/g, output : '$1<i>//$2</i>$3' }, // comments // property
12 { input : /\/\*(.*?)\*\//g, output : '<i>/*$1*/</i>' } // comments /* */ property
16 { input : 'dw', output : 'document.write(\'$0\');' }, property
17 { input : 'getid', output : 'document.getElementById(\'$0\')' }, property
18 { input : 'fun', output : 'function $0(){\n\t\n}' }, property
19 { input : 'func', output : 'function $0(){\n\t\n}' } property
23 { input : '\'',output : '\'$0\'' }, property
24 { input : '"', output : '"$0"' }, property
25 { input : '(', output : '\($0\)' }, property
26 { input : '[', output : '\[$0\]' }, property
27 { input : '{', output : '{\n\t$0\n}' } property