HTMLDocument.Doctype(3kaya)
NAME
HTMLDocument::Doctype - The document type declaration.
SYNOPSIS
HTMLDocument::Doctype< > = HTML4Strict() | XHTML1Strict() | TagSoup()
DESCRIPTION
The document type declaration for the current document. You can either
use HTML 4.01 or XHTML 1.0 Strict doctypes (HTML is generally recommended due to the current lack of browser support for XHTML, but you
may need XHTML output if you intend to further process the document
with other XML tools). This changes the <!DOCTYPE ...> declaration at
the top of the document, and has other minor effects on code output.
The Transitional doctypes are not supported in Kaya - these doctypes
are intended only for transitioning legacy documents, and Kaya is sufficiently new not to have any such legacy documents existing.
The TagSoup HTMLDocument.readFromString (3kaya)
AUTHORS
Kaya standard library by Edwin Brady, Chris Morris and others
(kaya@kayalang.org). For further information see http://kayalang.org/
LICENSE
The Kaya standard library is free software; you can redistribute it
and/or modify it under the terms of the GNU Lesser General Public
License (version 2.1 or any later version) as published by the Free
Software Foundation.
RELATED
- HTMLDocument.HTMLDocument (3kaya) HTMLDocument.new (3kaya) HTMLDocument.readFromString (3kaya) W3C list of Doctypes <http://www.w3.org/QA/2002/04/valid-dtd-list.html>