1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-27 21:55:05 +03:00
libxml2/SAXresult/ent1
Daniel Veillard 7d2c276a65 Fixed probles in some HTML tag autoclose, XML output bug on mixed-content
and fixed the related output for tests, Daniel.
1999-10-11 15:09:51 +00:00

15 lines
351 B
Plaintext

SAX.setDocumentLocator()
SAX.startDocument()
SAX.internalSubset(EXAMPLE, (null), example.dtd)
SAX.entityDecl(xml, 1, (null), (null), Extensible Markup Language)
SAX.getEntity(xml)
SAX.startElement(EXAMPLE)
SAX.characters(
, 5)
SAX.getEntity(xml)
SAX.warning: Entity 'xml' not defined
SAX.characters(
, 1)
SAX.endElement(EXAMPLE)
SAX.endDocument()