diff options
| author | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2009-04-16 12:04:49 +0000 |
|---|---|---|
| committer | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2009-04-16 12:04:49 +0000 |
| commit | d3bed23931d2bbc8ece4114da4382fa51c55853c (patch) | |
| tree | 47f1a178116b405dd7e8db2a68e1d75d8c5bedc3 /docutils/tools | |
| parent | 7d9a2cdad243fa08a747a37117a6d0462f5af053 (diff) | |
| download | docutils-d3bed23931d2bbc8ece4114da4382fa51c55853c.tar.gz | |
rst2latex.py: More specific web link in description
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@5905 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils/tools')
| -rwxr-xr-x | docutils/tools/rst2latex.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/docutils/tools/rst2latex.py b/docutils/tools/rst2latex.py index 284795256..94b8bfa96 100755 --- a/docutils/tools/rst2latex.py +++ b/docutils/tools/rst2latex.py @@ -14,10 +14,13 @@ try: except: pass -from docutils.core import publish_cmdline, default_description - +from docutils.core import publish_cmdline description = ('Generates LaTeX documents from standalone reStructuredText ' - 'sources. ' + default_description) + 'sources. ' + 'Reads from <source> (default is stdin) and writes to ' + '<destination> (default is stdout). See ' + '<http://docutils.sourceforge.net/docs/user/latex.html> for ' + 'the full reference.') publish_cmdline(writer_name='latex', description=description) |
