Lines Matching defs:input

7 	{ input : /(&lt;[^!\?]*?&gt;)/g, output : '<b>$1</b>' }, // all tags  property
8 …{ input : /(&lt;style.*?&gt;)(.*?)(&lt;\/style&gt;)/g, output : '<em>$1</em><em>$2</em><em>$3</em>… property
9 …{ input : /(&lt;script.*?&gt;)(.*?)(&lt;\/script&gt;)/g, output : '<ins>$1</ins><ins>$2</ins><ins>… property
10 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>' }, // strings double quote property
11 { input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>'}, // strings single quote property
12 { input : /(&lt;\?)/g, output : '<strong>$1' }, // <?.* property
13 { input : /(\?&gt;)/g, output : '$1</strong>' }, // .*?> property
14 { input : /(&lt;\?php|&lt;\?=|&lt;\?|\?&gt;)/g, output : '<cite>$1</cite>' }, // php tags property
15 { input : /(\$[\w\.]*)/g, output : '<a>$1</a>' }, // vars property
16 …{ input : /\b(false|true|and|or|xor|__FILE__|exception|__LINE__|array|as|break|case|class|const|co… property
17 { input : /([^:])\/\/(.*?)(<br|<\/P)/g, output : '$1<i>//$2</i>$3' }, // php comments // property
18 { input : /([^:])#(.*?)(<br|<\/P)/g, output : '$1<i>#$2</i>$3' }, // php comments # property
19 { input : /\/\*(.*?)\*\//g, output : '<i>/*$1*/</i>' }, // php comments /* */ property
20 { input : /(&lt;!--.*?--&gt.)/g, output : '<big>$1</big>' } // html comments property
24 { input : 'if', output : 'if($0){\n\t\n}' }, property
25 { input : 'ifelse', output : 'if($0){\n\t\n}\nelse{\n\t\n}' }, property
26 { input : 'else', output : '}\nelse {\n\t' }, property
27 { input : 'elseif', output : '}\nelseif($0) {\n\t' }, property
28 { input : 'do', output : 'do{\n\t$0\n}\nwhile();' }, property
29 { input : 'inc', output : 'include_once("$0");' }, property
30 { input : 'fun', output : 'function $0(){\n\t\n}' }, property
31 { input : 'func', output : 'function $0(){\n\t\n}' }, property
32 { input : 'while', output : 'while($0){\n\t\n}' }, property
33 { input : 'for', output : 'for($0,,){\n\t\n}' }, property
34 { input : 'fore', output : 'foreach($0 as ){\n\t\n}' }, property
35 { input : 'foreach', output : 'foreach($0 as ){\n\t\n}' }, property
36 { input : 'echo', output : 'echo \'$0\';' }, property
37 { input : 'switch', output : 'switch($0) {\n\tcase "": break;\n\tdefault: ;\n}' }, property
38 { input : 'case', output : 'case "$0" : break;' }, property
39 { input : 'ret0', output : 'return false;' }, property
40 { input : 'retf', output : 'return false;' }, property
41 { input : 'ret1', output : 'return true;' }, property
42 { input : 'rett', output : 'return true;' }, property
43 { input : 'ret', output : 'return $0;' }, property
44 { input : 'def', output : 'define(\'$0\',\'\');' }, property
45 { input : '<?', output : 'php\n$0\n?>' } property
49 { input : '\'', output : '\'$0\'' }, property
50 { input : '"', output : '"$0"' }, property
51 { input : '(', output : '\($0\)' }, property
52 { input : '[', output : '\[$0\]' }, property
53 { input : '{', output : '{\n\t$0\n}' } property
57 { input : '[space]', output : '&nbsp;' }, property
58 { input : '[enter]', output : '<br />' } , property
59 { input : '[j]', output : 'testing' }, property
60 { input : '[7]', output : '&amp;' } property