summaryrefslogtreecommitdiffstats
path: root/tests/test_sphinx/sourcedirs/extended_syntaxes/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_sphinx/sourcedirs/extended_syntaxes/conf.py')
-rw-r--r--tests/test_sphinx/sourcedirs/extended_syntaxes/conf.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/test_sphinx/sourcedirs/extended_syntaxes/conf.py b/tests/test_sphinx/sourcedirs/extended_syntaxes/conf.py
new file mode 100644
index 0000000..9845000
--- /dev/null
+++ b/tests/test_sphinx/sourcedirs/extended_syntaxes/conf.py
@@ -0,0 +1,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",
+}