* htmlNodeDumpOutput: * @buf: the HTML buffer output * @doc: the document * @cur: the current node * @encoding: the encoding string (unused) * * Dump an HTML node, recursive behaviour,children are printed too, * and formatting returns/spaces are added. */
| 956 | * and formatting returns/spaces are added. |
| 957 | */ |
| 958 | void |
| 959 | htmlNodeDumpOutput(xmlOutputBufferPtr buf, xmlDocPtr doc, |
| 960 | xmlNodePtr cur, const char *encoding ATTRIBUTE_UNUSED) { |
| 961 | htmlNodeDumpFormatOutput(buf, doc, cur, NULL, 1); |
| 962 | } |
| 963 | |
| 964 | /** |
| 965 | * htmlDocContentDumpFormatOutput: |
no test coverage detected