latex2e writer : Move usepackage hyperref after stylesheet inclusion.
[docutils.git] / docutils / writers / null.py
blob6c30627e26ac64d6ee8ea6809cb635f60d70545a
1 # $Id$
2 # Author: David Goodger <goodger@python.org>
3 # Copyright: This module has been placed in the public domain.
5 """
6 A do-nothing Writer.
7 """
9 from docutils import writers
12 class Writer(writers.UnfilteredWriter):
14 supported = ('null',)
15 """Formats this writer supports."""
17 config_section = 'null writer'
18 config_section_dependencies = ('writers',)
20 def translate(self):
21 pass