blob: edae18361fc3b6446dc83ce4a554be18b3c8ff04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Source and destination file names
test_source = "rst_html5_tuftig.txt"
test_destination = "rst_html5_tuftig.html"
# Keyword parameters passed to publish_file()
writer_name = "html5"
settings_overrides = {
'sectsubtitle_xform': True,
'smart_quotes': 'yes',
'footnote_references': 'superscript',
'table_style': 'booktabs numbered captionbelow',
# location of stylesheets (relative to ``docutils/test/``)
'stylesheet_dirs': ('functional/input/data', ),
'stylesheet_path': 'minimal.css, tuftig.css',
}
|