blob: 6e194864d0f99d7228770a4e53fd02e0111a2954 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Source and destination file names
test_source = "standalone_rst_html5.txt"
test_destination = "standalone_rst_html5.html"
# Keyword parameters passed to publish_file()
writer_name = "html5"
settings_overrides = {
'sectsubtitle_xform': True,
# "smart" quotes:
# 'smart_quotes': 'yes',
# location of stylesheets (relative to ``docutils/test/``)
'stylesheet_dirs': ('functional/input/data', ),
}
|