* htmlDocContentDumpOutput: * @buf: the HTML buffer output * @cur: the document * @encoding: the encoding string (unused) * * Dump an HTML document. Formatting return/spaces are added. */
| 993 | * Dump an HTML document. Formatting return/spaces are added. |
| 994 | */ |
| 995 | void |
| 996 | htmlDocContentDumpOutput(xmlOutputBufferPtr buf, xmlDocPtr cur, |
| 997 | const char *encoding ATTRIBUTE_UNUSED) { |
| 998 | htmlNodeDumpFormatOutput(buf, cur, (xmlNodePtr) cur, NULL, 1); |
| 999 | } |
| 1000 | |
| 1001 | /************************************************************************ |
| 1002 | * * |
no test coverage detected