Fix [ 3527842 ].
[docutils.git] / tools / rst2latex.py
blob94b8bfa965a359fef773b1940baa22645631c9d5
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 LaTeX.
9 """
11 try:
12 import locale
13 locale.setlocale(locale.LC_ALL, '')
14 except:
15 pass
17 from docutils.core import publish_cmdline
19 description = ('Generates LaTeX documents from standalone reStructuredText '
20 'sources. '
21 'Reads from <source> (default is stdin) and writes to '
22 '<destination> (default is stdout). See '
23 '<http://docutils.sourceforge.net/docs/user/latex.html> for '
24 'the full reference.')
26 publish_cmdline(writer_name='latex', description=description)