Lines Matching defs:input
8 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>' }, // strings double quote property
9 { input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>' }, // strings single quote property
10 { input : /([\$\@\%][\w\.]*)/g, output : '<a>$1</a>' }, // vars property
11 { input : /(sub\s+)([\w\.]*)/g, output : '$1<em>$2</em>' }, // functions property
12 …{ input : /\b(abs|accept|alarm|atan2|bind|binmode|bless|caller|chdir|chmod|chomp|chop|chown|chr|c… property
13 { input : /([\(\){}])/g, output : '<u>$1</u>' }, // special chars property
14 { input : /#(.*?)(<br>|<\/P>)/g, output : '<i>#$1</i>$2' } // comments property
20 { input : '\'',output : '\'$0\'' }, property
21 { input : '"', output : '"$0"' }, property
22 { input : '(', output : '\($0\)' }, property
23 { input : '[', output : '\[$0\]' }, property
24 { input : '{', output : '{\n\t$0\n}' } property