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 { input : /([\$\@\%]+)([\w\.]*)/g, output : '<a>$1$2</a>' }, // vars property
10 { input : /(def\s+)([\w\.]*)/g, output : '$1<em>$2</em>' }, // functions property
11 …ry|return|self|super|then|true|undef|unless|until|when|while|yield)\b/g, output : '<b>$1</b>' }, /… property
12 { input : /([\(\){}])/g, output : '<u>$1</u>' }, // special chars property
13 { input : /#(.*?)(<br>|<\/P>)/g, output : '<i>#$1</i>$2' } // comments property
19 { input : '\'',output : '\'$0\'' }, property
20 { input : '"', output : '"$0"' }, property
21 { input : '(', output : '\($0\)' }, property
22 { input : '[', output : '\[$0\]' }, property
23 { input : '{', output : '{\n\t$0\n}' } property