include changes from HISTORY.txt
[docutils.git] / tools / rst2html4.py
bloba91f96a3fb207ebbb91f206fc102f3863687197c
1 #!/usr/bin/env python
3 # $Id$
4 # Author: David Goodger <goodger@python.org>
5 # Copyright: This module has been placed in the public domain.
7 """
8 A minimal front end to the Docutils Publisher, producing (X)HTML.
10 The output conforms to XHTML 1.0 transitional
11 and almost to HTML 4.01 transitional (except for closing empty tags).
12 """
14 try:
15 import locale
16 locale.setlocale(locale.LC_ALL, '')
17 except:
18 pass
20 from docutils.core import publish_cmdline, default_description
23 description = ('Generates (X)HTML documents from standalone reStructuredText '
24 'sources. ' + default_description)
26 publish_cmdline(writer_name='html4', description=description)