diff --git a/HTMLtree.c b/HTMLtree.c index 91f4b9b5..3dd78a91 100644 --- a/HTMLtree.c +++ b/HTMLtree.c @@ -987,7 +987,14 @@ void htmlDocContentDumpFormatOutput(xmlOutputBufferPtr buf, xmlDocPtr cur, const char *encoding ATTRIBUTE_UNUSED, int format) { + int type = 0; + if (cur) { + type = cur->type; + cur->type = XML_HTML_DOCUMENT_NODE; + } htmlNodeDumpFormatOutput(buf, cur, (xmlNodePtr) cur, NULL, format); + if (cur) + cur->type = (xmlElementType) type; } /**