blob: c8925ac9c736a68e1bb807a42aa0eb5efbc32553 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Test the xhtml11 writer:
# common reader/parser/transform defaults for standalone tests
exec(open('functional/tests/_standalone_rst_defaults.py').read())
# Source and destination file names.
test_source = "standalone_rst_xhtml11.txt"
test_destination = "standalone_rst_xhtml11.xhtml"
# Keyword parameters passed to publish_file.
writer_name = "xhtml11"
# Settings
# local copy of default stylesheet:
# (test runs in ``docutils/test/``, we need relative path from there.)
settings_overrides['stylesheet_dirs'] = ('.', 'functional/input/data')
|