htmlDump
Dump a HTML document
Syntax
str = htmlDump(xmlDoc [, indent])
Arguments
- xmlDoc
xmlDoc, a XML document
- indent
indent, a boolean
- str
str, a matrix of strings
Description
Dump a HTML document. If indent is false (by default it is true), no indentation and carriage return will be added.
Examples
doc = htmlReadStr(["<!DOCTYPE html PUBLIC ""-//W3C//DTD HTML 4.01//EN"""; """http://www.w3.org/TR/html4/strict.dtd"">"; "<html lang=""en"">"; " <head>"; " <meta http-equiv=""content-type"" content=""text/html; charset=utf-8"">"; " <title>title</title>"; " <link rel=""stylesheet"" type=""text/css"" href=""style.css"">"; " <script type=""text/javascript"" src=""script.js""></script>"; " </head>"; " <body>"; " </body>"; "</html>"]); // Dump a HTML document htmlDump(doc) // Dump a HTML document without indentation htmlDump(doc, %f) // Free the resources associated with the document xmlDelete(doc);
See also
- htmlWrite — Write a XML document in a file
History
Version | Description |
5.5.0 | HTML features added. |
Report an issue | ||
<< Traitement XML | Traitement XML | htmlRead >> |