Skip to content

Commit

Permalink
feat(core.py): Enable dollarmath myst extension for inline latex math
Browse files Browse the repository at this point in the history
  • Loading branch information
samjwu committed Feb 7, 2024
1 parent 9dfb486 commit 425891f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/rocm_docs/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,13 @@ class _DefaultSettings:
copyright = _ConfigDefault("2022-2023, Advanced Micro Devices Ltd")
# pylint: enable=redefined-builtin
myst_enable_extensions = _ConfigUnion(
{"colon_fence", "fieldlist", "replacements", "substitution"}
{
"colon_fence",
"dollarmath",
"fieldlist",
"replacements",
"substitution"
}
)
myst_heading_anchors = _ConfigDefault(3)
external_toc_exclude_missing = _ConfigDefault(False)
Expand Down

0 comments on commit 425891f

Please sign in to comment.