add note on revision numbering (feature request #50)
[docutils.git] / tools / rst2xetex.py
blob2460c4d11fe1c40c069e682b19d8471045a88e4c
1 #!/usr/bin/env python
3 # $Id$
4 # Author: Guenter Milde
5 # Copyright: This module has been placed in the public domain.
7 """
8 A minimal front end to the Docutils Publisher, producing Lua/XeLaTeX code.
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 for compilation with the Unicode-aware TeX variants '
21 'XeLaTeX or LuaLaTeX. '
22 'Reads from <source> (default is stdin) and writes to '
23 '<destination> (default is stdout). See '
24 '<http://docutils.sourceforge.net/docs/user/latex.html> for '
25 'the full reference.')
27 publish_cmdline(writer_name='xetex', description=description)