Fix [ 3527842 ].
[docutils.git] / tools / rst2html.py
blob77185df2b65c67f985d9db8fc4f9dead6d294609
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 HTML.
9 """
11 try:
12 import locale
13 locale.setlocale(locale.LC_ALL, '')
14 except:
15 pass
17 from docutils.core import publish_cmdline, default_description
20 description = ('Generates (X)HTML documents from standalone reStructuredText '
21 'sources. ' + default_description)
23 publish_cmdline(writer_name='html', description=description)