Lines Matching defs:input
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 …{ input : /\b(break|continue|do|for|new|this|void|case|default|else|function|return|typeof|while|i… property
10 …{ input : /\b(alert|isNaN|parent|Array|parseFloat|parseInt|blur|clearTimeout|prompt|prototype|clos… 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