blob: ace3f8f360e2c1cd54c892f01f786dda6ceb12da (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Source and destination file names
test_source = "data/math.txt"
test_destination = "math_output_latex.html"
# Keyword parameters passed to publish_file()
writer_name = "html4"
settings_overrides = {
'math_output': 'latex',
# location of stylesheets (relative to ``docutils/test/``)
'stylesheet_dirs': ('functional/input/data',),
}
|