Release 0.6: tagging released revision
[docutils.git] / tools / rstpep2html.py
blob9a3d615cb017b168dd9e2fa5a2607a097d55ca70
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 from PEP
9 (Python Enhancement Proposal) documents.
10 """
12 try:
13 import locale
14 locale.setlocale(locale.LC_ALL, '')
15 except:
16 pass
18 from docutils.core import publish_cmdline, default_description
21 description = ('Generates (X)HTML from reStructuredText-format PEP files. '
22 + default_description)
24 publish_cmdline(reader_name='pep', writer_name='pep_html',
25 description=description)