From eb5d521a2df72fa829a7f8196b957c696e7ccc58 Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Thu, 18 Mar 2010 07:40:32 +0100 Subject: Import upstream version 2.7.7 --- doc/html/libxml-HTMLparser.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'doc/html/libxml-HTMLparser.html') diff --git a/doc/html/libxml-HTMLparser.html b/doc/html/libxml-HTMLparser.html index 0bc7dbd..09c959b 100644 --- a/doc/html/libxml-HTMLparser.html +++ b/doc/html/libxml-HTMLparser.html @@ -93,6 +93,7 @@ A:link, A:visited, A:active { text-decoration: underline } HTML_PARSE_PEDANTIC = 128 : pedantic error reporting HTML_PARSE_NOBLANKS = 256 : remove blank nodes 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 }

Enum htmlStatus

Enum htmlStatus {
@@ -157,7 +158,7 @@ A:link, A:visited, A:active { text-decoration: underline }
 
cur:a pointer to an array of xmlChar
encoding:a free form C string describing the HTML document encoding, or NULL
Returns:the resulting document tree

Function: htmlParseDocument

int	htmlParseDocument		(htmlParserCtxtPtr ctxt)

parse an HTML document (and build a tree if using the standard SAX interface).

ctxt:an HTML parser context
Returns:0, -1 in case of error. the parser context is augmented as a result of the parsing.

Function: htmlParseElement

void	htmlParseElement		(htmlParserCtxtPtr ctxt)
-

parse an HTML element, this is highly recursive [39] element ::= EmptyElemTag | STag content ETag [41] Attribute ::= Name Eq AttValue

+

parse an HTML element, this is highly recursive this is kept for compatibility with previous code versions [39] element ::= EmptyElemTag | STag content ETag [41] Attribute ::= Name Eq AttValue

ctxt:an HTML parser context

Function: htmlParseEntityRef

const htmlEntityDesc *	htmlParseEntityRef	(htmlParserCtxtPtr ctxt, 
const xmlChar ** str)

parse an HTML ENTITY references [68] EntityRef ::= '&' Name ';'

ctxt:an HTML parser context
str:location to store the entity name
Returns:the associated htmlEntityDescPtr if found, or NULL otherwise, if non-NULL *str will have to be freed by the caller.

Function: htmlParseFile

htmlDocPtr	htmlParseFile		(const char * filename, 
const char * encoding)
-- cgit v1.2.3