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 : /([\$\@\%]+)([\w\.]*)/g, output : '<a>$1$2</a>' }, // vars property
10 { input : /(def\s+)([\w\.]*)/g, output : '$1<em>$2</em>' }, // functions property
11 …{ input : /\b(alias|and|BEGIN|begin|break|case|class|def|defined|do|else|elsif|END|end|ensure|fals… 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