mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
14 lines
290 B
Plaintext
14 lines
290 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.comment(?xml encoding="UTF-8")
|
|
SAX.startElement(html)
|
|
SAX.startElement(body)
|
|
SAX.startElement(p)
|
|
SAX.characters(öäüß, 8)
|
|
SAX.endElement(p)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(body)
|
|
SAX.endElement(html)
|
|
SAX.endDocument()
|