blob: 1a5f053a944842e5f1496131a79dc95e3a778bd7 (
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_mathml.html"
# Keyword parameters passed to publish_file()
writer_name = "html5"
settings_overrides = {
'math_output': 'MathML',
# location of stylesheets (relative to ``docutils/test/``)
'stylesheet_dirs': ('functional/input/data', ),
}
|