html_simple_parser 0.1.1

A simple parser for html files to extract tags, child tags, attributes, etc.
Documentation
<!DOCTYPE html>
<html>
    <head>
        <div>
            <p>Paragraph1</p>
            <br/>
            <p>Paragraph2</p>
        </div>
    </head>
    <body>
        <section>
            <table>
                <br/>
                <img/>
            </table>
            <div></div>
            <div></div>
        </section>
    </body>
</html>