rayd / html-parse-stringify2

Parses well-formed HTML (meaning all tags closed) into an AST and back. quickly.
21 stars 11 forks source link

fix: multi close tag will make level < -1 #29

Open divme opened 2 years ago

divme commented 2 years ago

when html has multi close tags, It will lead to errors; case like:

it just a test

error code source: L91: parent = level === -1 ? result : arr[level].children;