Skip to content

Commit 7277faf

Browse files
committed
revert(index): collect attrs
1 parent 6d1a2d5 commit 7277faf

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

index.js

+3-10
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ var defaultDirectives = [{name: '!doctype', start: '<', end: '>'}];
1818
*/
1919
function postHTMLParser(html, options) {
2020
var bufArray = [],
21-
bufAttributes = {},
2221
results = [];
2322

2423
bufArray.last = function() {
@@ -70,21 +69,15 @@ function postHTMLParser(html, options) {
7069
last.content || (last.content = []);
7170
last.content.push(comment);
7271
},
73-
onopentag: function(tag) {
72+
onopentag: function(tag, attrs) {
7473
var buf = { tag: tag };
7574

76-
if (Object.keys(bufAttributes).length) {
77-
buf.attrs = normalizeArributes(bufAttributes);
78-
bufAttributes = {};
75+
if (Object.keys(attrs).length) {
76+
buf.attrs = normalizeArributes(attrs);
7977
}
8078

8179
bufArray.push(buf);
8280
},
83-
onattribute: function(name, value) {
84-
var obj = {};
85-
obj[name] = value;
86-
Object.assign(bufAttributes, obj);
87-
},
8881
onclosetag: function() {
8982
var buf = bufArray.pop();
9083

0 commit comments

Comments
 (0)