removed obsolete issues (many of them fixed with AE)
[docutils.git] / sandbox / gschwant / htmlnav / rst2htmlnav.py
blob7d68bfce8dc0a4e17b6678f02d25048799e43761
1 #!/usr/bin/env python
3 # Author: Gunnar Schwant
4 # Contact: g.schwant@gmx.de
5 # Revision: $Revision$
6 # Date: $Date$
7 # Copyright: This module has been placed in the public domain.
9 import locale
10 try:
11 locale.setlocale(locale.LC_ALL, '')
12 except:
13 pass
15 from docutils.core import publish_cmdline, default_description
17 description = (default_description)
19 publish_cmdline(writer_name='htmlnav', description=description)