► Module Ft.Xml.Lib.HtmlPrettyPrinter
This module supports formatted document serialization in HTML syntax.
Copyright 2005 Fourthought, Inc. (USA).
Detailed license and copyright information: http://4suite.org/COPYRIGHT
Project home, documentation, distributions: http://4suite.org/
Classes
- class HtmlPrettyPrinter(Ft.Xml.Lib.HtmlPrinter.HtmlPrinter)
-
An HtmlPrettyPrinter instance provides functions for serializing an
XML or XML-like document to a stream, based on SAX-like event calls
initiated by an Ft.Xml.Lib.Print.PrintVisitor instance.
The methods in this subclass of HtmlPrinter attempt to emit a
document conformant to the HTML 4.01 syntax, with extra whitespace
added for visual formatting. The indent attribute is the string used
for each level of indenting. It defaults to 2 spaces.
Methods
- __init__(self, stream, encoding)
- Overrides: __init__ from class HtmlPrinter
- comment(self, data)
- Overrides: comment from class HtmlPrinter
- endElement(self, namespaceUri, tagName)
- Overrides: endElement from class HtmlPrinter
- processingInstruction(self, target, data)
- Overrides: processingInstruction from class HtmlPrinter
- startElement(self, namespaceUri, tagName, namespaces, attributes)
- Overrides: startElement from class HtmlPrinter
Members
- indent = ' '
- inlineElements = {(None, 'a'): True, (None, 'abbr'): True, (None, 'acronym'): True, (None, 'applet'): True, (None, 'b'): True, (None, 'basefont'): True, (None, 'bdo'): True, (None, 'big'): True, (None, 'button'): True, (None, 'cite'): True, ...}
- noIndentElements = {(None, 'pre'): True, (None, 'script'): True, (None, 'style'): True, (None, 'textarea'): True, (None, 'xmp'): True}