htmlparser.js 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. // Regular Expressions for parsing tags and attributes
  2. var startTag = /^<([-A-Za-z0-9_]+)((?:\s+[a-zA-Z_:][-a-zA-Z0-9_:.]*(?:\s*=\s*(?:(?:"[^"]*")|(?:'[^']*')|[^>\s]+))?)*)\s*(\/?)>/,
  3. endTag = /^<\/([-A-Za-z0-9_]+)[^>]*>/,
  4. attr = /([a-zA-Z_:][-a-zA-Z0-9_:.]*)(?:\s*=\s*(?:(?:"((?:\\.|[^"])*)")|(?:'((?:\\.|[^'])*)')|([^>\s]+)))?/g;
  5. // Empty Elements - HTML 5
  6. var empty = makeMap("area,base,basefont,br,col,frame,hr,img,input,link,meta,param,embed,command,keygen,source,track,wbr");
  7. // Block Elements - HTML 5
  8. var block = makeMap("a,address,code,article,applet,aside,audio,blockquote,button,canvas,center,dd,del,dir,div,dl,dt,fieldset,figcaption,figure,footer,form,frameset,h1,h2,h3,h4,h5,h6,header,hgroup,hr,iframe,ins,isindex,li,map,menu,noframes,noscript,object,ol,output,p,pre,section,script,table,tbody,td,tfoot,th,thead,tr,ul,video");
  9. // Inline Elements - HTML 5
  10. var inline = makeMap("abbr,acronym,applet,b,basefont,bdo,big,br,button,cite,del,dfn,em,font,i,iframe,img,input,ins,kbd,label,map,object,q,s,samp,script,select,small,span,strike,strong,sub,sup,textarea,tt,u,var");
  11. // Elements that you can, intentionally, leave open
  12. // (and which close themselves)
  13. var closeSelf = makeMap("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr");
  14. // Attributes that have their values filled in disabled="disabled"
  15. var fillAttrs = makeMap("checked,compact,declare,defer,disabled,ismap,multiple,nohref,noresize,noshade,nowrap,readonly,selected");
  16. // Special Elements (can contain anything)
  17. var special = makeMap("wxxxcode-style,script,style,view,scroll-view,block");
  18. function HTMLParser(html, handler) {
  19. var index, chars, match, stack = [], last = html;
  20. stack.last = function () {
  21. return this[this.length - 1];
  22. };
  23. while (html) {
  24. chars = true;
  25. // Make sure we're not in a script or style element
  26. if (!stack.last() || !special[stack.last()]) {
  27. // Comment
  28. if (html.indexOf("<!--") == 0) {
  29. index = html.indexOf("-->");
  30. if (index >= 0) {
  31. if (handler.comment)
  32. handler.comment(html.substring(4, index));
  33. html = html.substring(index + 3);
  34. chars = false;
  35. }
  36. // end tag
  37. } else if (html.indexOf("</") == 0) {
  38. match = html.match(endTag);
  39. if (match) {
  40. html = html.substring(match[0].length);
  41. match[0].replace(endTag, parseEndTag);
  42. chars = false;
  43. }
  44. // start tag
  45. } else if (html.indexOf("<") == 0) {
  46. match = html.match(startTag);
  47. if (match) {
  48. html = html.substring(match[0].length);
  49. match[0].replace(startTag, parseStartTag);
  50. chars = false;
  51. }
  52. }
  53. if (chars) {
  54. index = html.indexOf("<");
  55. var text = ''
  56. while (index === 0) {
  57. text += "<";
  58. html = html.substring(1);
  59. index = html.indexOf("<");
  60. }
  61. text += index < 0 ? html : html.substring(0, index);
  62. html = index < 0 ? "" : html.substring(index);
  63. if (handler.chars)
  64. handler.chars(text);
  65. }
  66. } else {
  67. html = html.replace(new RegExp("([\\s\\S]*?)<\/" + stack.last() + "[^>]*>"), function (all, text) {
  68. text = text.replace(/<!--([\s\S]*?)-->|<!\[CDATA\[([\s\S]*?)]]>/g, "$1$2");
  69. if (handler.chars)
  70. handler.chars(text);
  71. return "";
  72. });
  73. parseEndTag("", stack.last());
  74. }
  75. if (html == last)
  76. throw "Parse Error: " + html;
  77. last = html;
  78. }
  79. // Clean up any remaining tags
  80. parseEndTag();
  81. function parseStartTag(tag, tagName, rest, unary) {
  82. tagName = tagName.toLowerCase();
  83. if (block[tagName]) {
  84. while (stack.last() && inline[stack.last()]) {
  85. parseEndTag("", stack.last());
  86. }
  87. }
  88. if (closeSelf[tagName] && stack.last() == tagName) {
  89. parseEndTag("", tagName);
  90. }
  91. unary = empty[tagName] || !!unary;
  92. if (!unary)
  93. stack.push(tagName);
  94. if (handler.start) {
  95. var attrs = [];
  96. rest.replace(attr, function (match, name) {
  97. var value = arguments[2] ? arguments[2] :
  98. arguments[3] ? arguments[3] :
  99. arguments[4] ? arguments[4] :
  100. fillAttrs[name] ? name : "";
  101. attrs.push({
  102. name: name,
  103. value: value,
  104. escaped: value.replace(/(^|[^\\])"/g, '$1\\\"') //"
  105. });
  106. });
  107. if (handler.start) {
  108. handler.start(tagName, attrs, unary);
  109. }
  110. }
  111. }
  112. function parseEndTag(tag, tagName) {
  113. // If no tag name is provided, clean shop
  114. if (!tagName)
  115. var pos = 0;
  116. // Find the closest opened tag of the same type
  117. else {
  118. tagName = tagName.toLowerCase();
  119. for (var pos = stack.length - 1; pos >= 0; pos--)
  120. if (stack[pos] == tagName)
  121. break;
  122. }
  123. if (pos >= 0) {
  124. // Close all the open elements, up the stack
  125. for (var i = stack.length - 1; i >= pos; i--)
  126. if (handler.end)
  127. handler.end(stack[i]);
  128. // Remove the open elements from the stack
  129. stack.length = pos;
  130. }
  131. }
  132. };
  133. function makeMap(str) {
  134. var obj = {}, items = str.split(",");
  135. for (var i = 0; i < items.length; i++)
  136. obj[items[i]] = true;
  137. return obj;
  138. }
  139. module.exports = HTMLParser;