How to convert <node/> to <node></node> with libxml (converting empty elements to start-end tag pairs)

StackOverflow https://stackoverflow.com/questions/11005902

While generating an XML content, I get an empty node <node/>, and I want it to be <node></node>. (Since <node></node> is the correct form of c14n, the progress called "converting empty elements to start-end tag pairs")

How should I convert it?

There's a way hinted by Jim Garrison(Thank you) to do this, by using xmlBufferCreate, xmlSaveToBuffer, xmlSaveDoc, xmlSaveClose with xmlSaveOption: XML_SAVE_NO_EMPTY

有帮助吗?

解决方案 2

I found another way which is easier when the nodes are generated under control, by simply giving value "" to the node.

其他提示

Take a look at the libxml2 documentation, specifically xmlSaveOption value XML_SAVE_NO_EMPTY

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top