diff options
Diffstat (limited to 'include/libxml/xmlsave.h')
-rw-r--r-- | include/libxml/xmlsave.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/libxml/xmlsave.h b/include/libxml/xmlsave.h index 7b8f42c..766a2ac 100644 --- a/include/libxml/xmlsave.h +++ b/include/libxml/xmlsave.h @@ -28,7 +28,9 @@ extern "C" { */ typedef enum { XML_SAVE_FORMAT = 1<<0, /* format save output */ - XML_SAVE_NO_DECL = 1<<1 /* drop the xml declaration */ + XML_SAVE_NO_DECL = 1<<1, /* drop the xml declaration */ + XML_SAVE_NO_EMPTY = 1<<2, /* no empty tags */ + XML_SAVE_NO_XHTML = 1<<3 /* disable XHTML1 specific rules */ } xmlSaveOption; |