summaryrefslogtreecommitdiffstats
path: root/tests/test_sphinx/sourcedirs/extended_syntaxes/conf.py
blob: 9845000ace65d4d2db86705c163b51891a6437d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
extensions = ["myst_parser"]
language = "en"
exclude_patterns = ["_build"]
myst_disable_syntax = ["emphasis"]
myst_dmath_allow_space = False
myst_dmath_double_inline = True
mathjax_config = {}
myst_enable_extensions = [
    "dollarmath",
    "amsmath",
    "deflist",
    "colon_fence",
    "linkify",
    "tasklist",
]
myst_number_code_blocks = ["typescript"]
myst_html_meta = {
    "description lang=en": "meta description",
    "property=og:locale": "en_US",
}