blob: a43c5e931e4053c4023fb37e3a7b8b21039565f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#!/usr/bin/env python
# Author: Guenter Milde
# Contact:
# Revision: $Revision$
# Date: $Date$
# Copyright: Licensed under the Academic Free License version 1.2
"""
Front end to the Docutils Publisher, producing HTML not requiring
a CSS stylesheet.
"""
import sys
try:
import locale
locale.setlocale(locale.LC_ALL, '')
except:
pass
from docutils.core import publish_cmdline, default_description
# Prepend parent dir to the PYTHONPATH
# (This is a hack to get rst2html_trans.py working without install,
# not needed if the html4trans.py module is installed in the PYTHONPATH)
sys.path.insert(0, '..')
from html4trans import Writer
description = ('Generates (X)HTML documents from standalone reStructuredText '
'sources that do not require a CSS stylesheet. '
+ default_description)
# no CSS stylesheet needed, so do not include (referencing does not harm)
overrides = {'embed_stylesheet': False}
publish_cmdline(writer=Writer(),
settings_overrides=overrides,
description=description)
|