HTMLDocument::HTMLDocument
Constructors
- HTMLDocument(HTMLDocument::MetaData head,ElementTreeData::ElementTree body,HTMLDocument::Doctype doctype,[Tuples::Pair<String, String> ] httpheaders)
Usage
This data type represents a HTML document. The doctype is set when an instance of this type is created. The document can be converted to a string, with each field forming a different part
<DOCTYPE ...> <!-- from doctype field -->
<html>
<head>
<!-- links, stylesheets, scripts and metadata from the head field >
</head>
<body>
<!-- a HTML or XHTML element tree manipulated with the
functions in this module -->
</body>
</html>
The httpheaders field contains details of HTTP headers to be set if the document is served over HTTP (such as in a CGI program or Webapp)