New HTML writer generating `XHTML1.1`_ styled with CSS2.
[docutils.git] / test / functional / tests / standalone_rst_xhtml11.py
blobb51fc8ab9c994e0b637c1877ca207a86d7c3fcaf
1 # Test the xhtml11 writer:
3 # common reader/parser/transform defaults for standalone tests
4 exec(open('functional/tests/_standalone_rst_defaults.py').read())
6 # Source and destination file names.
7 test_source = "standalone_rst_xhtml11.txt"
8 test_destination = "standalone_rst_xhtml11.xhtml"
10 # Keyword parameters passed to publish_file.
11 writer_name = "xhtml11"
13 # Settings
14 # local copy of default stylesheet:
15 # (test runs in ``docutils/test/``, we need relative path from there.)
16 settings_overrides['stylesheet_path'] = (
17 'functional/input/data/html4css1.css,'
18 'functional/input/data/xhtml11.css')