31 lines
686 B
Python
31 lines
686 B
Python
|
# Authors: David Goodger
|
||
|
# Contact: goodger@users.sourceforge.net
|
||
|
# Revision: $Revision$
|
||
|
# Date: $Date$
|
||
|
# Copyright: This module has been placed in the public domain.
|
||
|
|
||
|
"""
|
||
|
Simple internal document tree Writer, writes indented pseudo-XML.
|
||
|
"""
|
||
|
|
||
|
__docformat__ = 'reStructuredText'
|
||
|
|
||
|
|
||
|
from docutils import writers
|
||
|
|
||
|
|
||
|
class Writer(writers.Writer):
|
||
|
|
||
|
supported = ('pprint', 'pformat', 'pseudoxml')
|
||
|
"""Formats this writer supports."""
|
||
|
|
||
|
output = None
|
||
|
"""Final translated form of `document`."""
|
||
|
|
||
|
def translate(self):
|
||
|
self.output = self.document.pformat()
|
||
|
|
||
|
def supports(self, format):
|
||
|
"""This writer supports all format-specific elements."""
|
||
|
return 1
|