Lines Matching defs:input

7 	{ input : /(&lt;[^!]*?&gt;)/g, output : '<b>$1</b>'	}, // all tags  property
8 { input : /(&lt;a .*?&gt;|&lt;\/a&gt;)/g, output : '<a>$1</a>' }, // links property
9 { input : /(&lt;img .*?&gt;)/g, output : '<big>$1</big>' }, // images property
10 …{ input : /(&lt;\/?(button|textarea|form|input|select|option|label).*?&gt;)/g, output : '<u>$1</u>… property
11 …{ input : /(&lt;style.*?&gt;)(.*?)(&lt;\/style&gt;)/g, output : '<em>$1</em><em>$2</em><em>$3</em>… property
12 …{ input : /(&lt;script.*?&gt;)(.*?)(&lt;\/script&gt;)/g, output : '<strong>$1</strong><tt>$2</tt><… property
13 { input : /=(".*?")/g, output : '=<s>$1</s>' }, // atributes double quote property
14 { input : /=('.*?')/g, output : '=<s>$1</s>' }, // atributes single quote property
15 { input : /(&lt;!--.*?--&gt.)/g, output : '<ins>$1</ins>' }, // comments property
16 …{ input : /\b(alert|window|document|break|continue|do|for|new|this|void|case|default|else|function… property
20 { input : 'aref', output : '<a href="$0"></a>' }, property
21 { input : 'h1', output : '<h1>$0</h1>' }, property
22 { input : 'h2', output : '<h2>$0</h2>' }, property
23 { input : 'h3', output : '<h3>$0</h3>' }, property
24 { input : 'h4', output : '<h4>$0</h4>' }, property
25 { input : 'h5', output : '<h5>$0</h5>' }, property
26 { input : 'h6', output : '<h6>$0</h6>' }, property
27 { input : 'html', output : '<html>\n\t$0\n</html>' }, property
28 …{ input : 'head', output : '<head>\n\t<meta http-equiv="content-type" content="text/html; charset=… property
29 { input : 'img', output : '<img src="$0" alt="" />' }, property
30 { input : 'input', output : '<input name="$0" id="" type="" value="" />' }, property
31 { input : 'label', output : '<label for="$0"></label>' }, property
32 { input : 'legend', output : '<legend>\n\t$0\n</legend>' }, property
33 …{ input : 'link', output : '<link rel="stylesheet" href="$0" type="text/css" media="screen" charse… property
34 { input : 'base', output : '<base href="$0" />' }, property
35 { input : 'body', output : '<body>\n\t$0\n</body>' }, property
36 …{ input : 'css', output : '<link rel="stylesheet" href="$0" type="text/css" media="screen" charset… property
37 { input : 'div', output : '<div>\n\t$0\n</div>' }, property
38 { input : 'divid', output : '<div id="$0">\n\t\n</div>' }, property
39 { input : 'dl', output : '<dl>\n\t<dt>\n\t\t$0\n\t</dt>\n\t<dd></dd>\n</dl>' }, property
40 { input : 'fieldset', output : '<fieldset>\n\t$0\n</fieldset>' }, property
41 { input : 'form', output : '<form action="$0" method="" name="">\n\t\n</form>' }, property
42 { input : 'meta', output : '<meta name="$0" content="" />' }, property
43 { input : 'p', output : '<p>$0</p>' }, property
44 …{ input : 'script', output : '<script type="text/javascript" language="javascript" charset="utf-8"… property
45 …{ input : 'scriptsrc', output : '<script src="$0" type="text/javascript" language="javascript" cha… property
46 { input : 'span', output : '<span>$0</span>' }, property
47 …{ input : 'table', output : '<table border="$0" cellspacing="" cellpadding="">\n\t<tr><th></th></t… property
48 { input : 'style', output : '<style type="text/css" media="screen">\n\t$0\n</style>' } property
52 { input : '\'',output : '\'$0\'' }, property
53 { input : '"', output : '"$0"' }, property
54 { input : '(', output : '\($0\)' }, property
55 { input : '[', output : '\[$0\]' }, property
56 { input : '{', output : '{\n\t$0\n}' } property