diff --git a/docs/documentation/conf.py b/docs/documentation/conf.py index f42592400..cf855f101 100644 --- a/docs/documentation/conf.py +++ b/docs/documentation/conf.py @@ -96,3 +96,14 @@ # -- Table and Figure labelling ---------------------------------------------- # Activate using: {numref}`tab:some-name` -> Table 1 numfig = True + +# -- MyST-Parser Syntax Extensions ------------------------------------------- +# https://myst-parser.readthedocs.io/en/latest/syntax/optional.html#math-shortcuts +# +# "dollarmath" for parsing of dollar $ and $$ encapsulated math. +# "amsmath" for direct parsing of amsmath LaTeX environments. +# +myst_enable_extensions = [ + "amsmath", + "dollarmath", +]