summaryrefslogtreecommitdiff
path: root/tools/rst2html.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/rst2html.py')
-rwxr-xr-xtools/rst2html.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/tools/rst2html.py b/tools/rst2html.py
new file mode 100755
index 000000000..35e5558aa
--- /dev/null
+++ b/tools/rst2html.py
@@ -0,0 +1,25 @@
+#!/usr/bin/env python
+
+# Author: David Goodger
+# Contact: goodger@python.org
+# Revision: $Revision$
+# Date: $Date$
+# Copyright: This module has been placed in the public domain.
+
+"""
+A minimal front end to the Docutils Publisher, producing HTML.
+"""
+
+try:
+ import locale
+ locale.setlocale(locale.LC_ALL, '')
+except:
+ pass
+
+from docutils.core import publish_cmdline, default_description
+
+
+description = ('Generates (X)HTML documents from standalone reStructuredText '
+ 'sources. ' + default_description)
+
+publish_cmdline(writer_name='html', description=description)