summaryrefslogtreecommitdiff
path: root/sandbox/grubert/latex.py
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/grubert/latex.py')
-rwxr-xr-xsandbox/grubert/latex.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/sandbox/grubert/latex.py b/sandbox/grubert/latex.py
deleted file mode 100755
index a0f1a6ab8..000000000
--- a/sandbox/grubert/latex.py
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/usr/bin/env python
-
-"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
-
-A minimal front-end to the Docutils Publisher, producing HTML.
-"""
-
-import locale
-locale.setlocale(locale.LC_ALL, '')
-
-from docutils.core import publish_cmdline
-
-
-usage = '%prog [options] [source [destination]]'
-description = ('Generate LaTeX documents from standalone reStructuredText '
- 'sources.')
-
-publish_cmdline(writer_name='latex', usage=usage, description=description)