this module implements an HTML 4.0 non-verifying parser with API compatible with the XML parser ones. It should be able to parse "real world" HTML, even if severely broken from a specification point of view. Table of Contents#define htmlDefaultSubelement #define htmlElementAllowedHereDesc #define htmlRequiredAttrs Typedef xmlDocPtr htmlDocPtr
Structure htmlElemDesc struct _htmlElemDesc
Typedef htmlElemDesc * htmlElemDescPtr
Structure htmlEntityDesc struct _htmlEntityDesc
@@ -96,6 +96,7 @@ A:link, A:visited, A:active { text-decoration: underli
HTML_PARSE_NONET = 2048 : Forbid network access
HTML_PARSE_NOIMPLIED = 8192 : Do not add implied html/body... elements
HTML_PARSE_COMPACT = 65536 : compact small text nodes
+ HTML_PARSE_IGNORE_ENC = 2097152 : ignore internal document encoding hint
}
Enum htmlStatus {
HTML_NA = 0 : something we don't check at all
|