Skip to content

Commit 8ca0fee

Browse files
authored
Merge pull request #639 from samjwu/dollarmath
feat(core.py): Enable dollarmath myst extension for inline latex math
2 parents 9dfb486 + 907c77f commit 8ca0fee

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/rocm_docs/core.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,14 @@ class _DefaultSettings:
7575
copyright = _ConfigDefault("2022-2023, Advanced Micro Devices Ltd")
7676
# pylint: enable=redefined-builtin
7777
myst_enable_extensions = _ConfigUnion(
78-
{"colon_fence", "fieldlist", "replacements", "substitution"}
78+
{
79+
"colon_fence",
80+
"dollarmath",
81+
"fieldlist",
82+
"html_image",
83+
"replacements",
84+
"substitution",
85+
}
7986
)
8087
myst_heading_anchors = _ConfigDefault(3)
8188
external_toc_exclude_missing = _ConfigDefault(False)

0 commit comments

Comments
 (0)