rayd / html-parse-stringify2

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

Doesn't catch invalid HTML well. #7

Open rayd opened 8 years ago

rayd commented 8 years ago

This doesn't parse as you would expect it to...

<div> 
    <span>Level One</span>
    <div>
        <span>Level Two</span>
        </p>
    </div>
</div>