html.js 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. * CodePress regular expressions for HTML syntax highlighting
  3. */
  4. // HTML
  5. Language.syntax = [
  6. { input : /(&lt;[^!]*?&gt;)/g, output : '<b>$1</b>' }, // all tags
  7. { input : /(&lt;a .*?&gt;|&lt;\/a&gt;)/g, output : '<a>$1</a>' }, // links
  8. { input : /(&lt;img .*?&gt;)/g, output : '<big>$1</big>' }, // images
  9. { input : /(&lt;\/?(button|textarea|form|input|select|option|label).*?&gt;)/g, output : '<u>$1</u>' }, // forms
  10. { input : /(&lt;style.*?&gt;)(.*?)(&lt;\/style&gt;)/g, output : '<em>$1</em><em>$2</em><em>$3</em>' }, // style tags
  11. { input : /(&lt;script.*?&gt;)(.*?)(&lt;\/script&gt;)/g, output : '<strong>$1</strong><tt>$2</tt><strong>$3</strong>' }, // script tags
  12. { input : /=(".*?")/g, output : '=<s>$1</s>' }, // atributes double quote
  13. { input : /=('.*?')/g, output : '=<s>$1</s>' }, // atributes single quote
  14. { input : /(&lt;!--.*?--&gt.)/g, output : '<ins>$1</ins>' }, // comments
  15. { input : /\b(alert|window|document|break|continue|do|for|new|this|void|case|default|else|function|return|typeof|while|if|label|switch|var|with|catch|boolean|int|try|false|throws|null|true|goto)\b/g, output : '<i>$1</i>' } // script reserved words
  16. ]
  17. Language.snippets = [
  18. { input : 'aref', output : '<a href="$0"></a>' },
  19. { input : 'h1', output : '<h1>$0</h1>' },
  20. { input : 'h2', output : '<h2>$0</h2>' },
  21. { input : 'h3', output : '<h3>$0</h3>' },
  22. { input : 'h4', output : '<h4>$0</h4>' },
  23. { input : 'h5', output : '<h5>$0</h5>' },
  24. { input : 'h6', output : '<h6>$0</h6>' },
  25. { input : 'html', output : '<html>\n\t$0\n</html>' },
  26. { input : 'head', output : '<head>\n\t<meta http-equiv="content-type" content="text/html; charset=utf-8" />\n\t<title>$0</title>\n\t\n</head>' },
  27. { input : 'img', output : '<img src="$0" alt="" />' },
  28. { input : 'input', output : '<input name="$0" id="" type="" value="" />' },
  29. { input : 'label', output : '<label for="$0"></label>' },
  30. { input : 'legend', output : '<legend>\n\t$0\n</legend>' },
  31. { input : 'link', output : '<link rel="stylesheet" href="$0" type="text/css" media="screen" charset="utf-8" />' },
  32. { input : 'base', output : '<base href="$0" />' },
  33. { input : 'body', output : '<body>\n\t$0\n</body>' },
  34. { input : 'css', output : '<link rel="stylesheet" href="$0" type="text/css" media="screen" charset="utf-8" />' },
  35. { input : 'div', output : '<div>\n\t$0\n</div>' },
  36. { input : 'divid', output : '<div id="$0">\n\t\n</div>' },
  37. { input : 'dl', output : '<dl>\n\t<dt>\n\t\t$0\n\t</dt>\n\t<dd></dd>\n</dl>' },
  38. { input : 'fieldset', output : '<fieldset>\n\t$0\n</fieldset>' },
  39. { input : 'form', output : '<form action="$0" method="" name="">\n\t\n</form>' },
  40. { input : 'meta', output : '<meta name="$0" content="" />' },
  41. { input : 'p', output : '<p>$0</p>' },
  42. { input : 'script', output : '<script type="text/javascript" language="javascript" charset="utf-8">\n\t$0\t\n</script>' },
  43. { input : 'scriptsrc', output : '<script src="$0" type="text/javascript" language="javascript" charset="utf-8"></script>' },
  44. { input : 'span', output : '<span>$0</span>' },
  45. { input : 'table', output : '<table border="$0" cellspacing="" cellpadding="">\n\t<tr><th></th></tr>\n\t<tr><td></td></tr>\n</table>' },
  46. { input : 'style', output : '<style type="text/css" media="screen">\n\t$0\n</style>' }
  47. ]
  48. Language.complete = [
  49. { input : '\'',output : '\'$0\'' },
  50. { input : '"', output : '"$0"' },
  51. { input : '(', output : '\($0\)' },
  52. { input : '[', output : '\[$0\]' },
  53. { input : '{', output : '{\n\t$0\n}' }
  54. ]
  55. Language.shortcuts = []