xhtml_parser 0.2.10

Non-validating XHTML Tree-based parser.
Documentation
Document [
    Element {
        tag_name: "note"
        attributes: [
            Attribute { name: "id", value: "1" }
            Attribute { name: "level", value: "high †" }
        ]
        children: [
            Element {
                tag_name: "to"
                children: [
                    Text {
                        "Tove"
                    }
                ]
            }
            Element {
                tag_name: "from"
                attributes: [
                    Attribute { name: "value", value: "Jani" }
                ]
            }
            Element {
                tag_name: "heading"
                children: [
                    Text {
                        "Reminder † "
                    }
                ]
            }
            Element {
                tag_name: "body"
                children: [
                    Text {
                        "Don't forget me this & weekend!"
                    }
                ]
            }
        ]
    }
]