Void write(HTMLDocument doc, UnicodeFormat uform=LiteralUTF8)
Arguments
doc: The HTML documentuform: The mode for handling multibyte UTF-8 characters.LiteralUTF8will give a smaller String, readable in Unicode-aware applications.NumericReferencewill give a larger String, especially if multibyte characters are very common in the text, but will work better if the String will later be edited in non-Unicode applications. This argument is optional, and defaults to the recommendedLiteralUTF8, but you may wish to useNumericReferenceif standard output is connected to a non-Unicode terminal, for example.
Usage
Print the HTML document on standard output. This is considerably more efficient than putStr(string(doc));