Add <target> to one more testcase (see r8206).
[docutils.git] / sandbox / grubert / latex.py
bloba0f1a6ab8b0650f596ec5242fec1ec37815f79f4
1 #!/usr/bin/env python
3 """
4 :Author: David Goodger
5 :Contact: goodger@users.sourceforge.net
6 :Revision: $Revision$
7 :Date: $Date$
8 :Copyright: This module has been placed in the public domain.
10 A minimal front-end to the Docutils Publisher, producing HTML.
11 """
13 import locale
14 locale.setlocale(locale.LC_ALL, '')
16 from docutils.core import publish_cmdline
19 usage = '%prog [options] [source [destination]]'
20 description = ('Generate LaTeX documents from standalone reStructuredText '
21 'sources.')
23 publish_cmdline(writer_name='latex', usage=usage, description=description)