mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00

This implements xmlCtxtParseContent, a better alternative to xmlParseInNodeContext or xmlParseBalancedChunkMemory. It accepts a parser context and a parser input, making it a lot more versatile. xmlParseInNodeContext is now implemented in terms of xmlCtxtParseContent. This makes sure that xmlParseInNodeContext never modifies the target document, improving thread safety. xmlParseInNodeContext is also more lenient now with regard to undeclared entities. Fixes #727.
15 lines
289 B
C
15 lines
289 B
C
#ifndef XML_HTML_H_PRIVATE__
|
|
#define XML_HTML_H_PRIVATE__
|
|
|
|
#include <libxml/xmlversion.h>
|
|
|
|
#ifdef LIBXML_HTML_ENABLED
|
|
|
|
XML_HIDDEN xmlNodePtr
|
|
htmlCtxtParseContentInternal(xmlParserCtxtPtr ctxt, xmlParserInputPtr input);
|
|
|
|
#endif /* LIBXML_HTML_ENABLED */
|
|
|
|
#endif /* XML_HTML_H_PRIVATE__ */
|
|
|