mirror of
https://github.com/GNOME/libxml2.git
synced 2025-02-23 18:29:14 +08:00
- HTMLparser.c result/HTML/*: revamped the way the HTML parser handles end of tags or end of input Daniel
20 lines
346 B
Plaintext
20 lines
346 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.startElement(html)
|
|
SAX.startElement(body)
|
|
SAX.startElement(ul)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(li)
|
|
SAX.characters(item 1
|
|
, 7)
|
|
SAX.endElement(li)
|
|
SAX.startElement(li)
|
|
SAX.characters(item 2
|
|
, 7)
|
|
SAX.endElement(li)
|
|
SAX.endElement(ul)
|
|
SAX.endElement(body)
|
|
SAX.endElement(html)
|
|
SAX.endDocument()
|