From d379d8ed665430dfcf6034d213a66a1c1ddd226c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9as=20Livet?= Date: Sat, 9 Jul 2022 15:37:12 +0200 Subject: [PATCH] Add MyST-Parser extensions --- docs/source/conf.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/source/conf.py b/docs/source/conf.py index 7ba055b..da1b2e3 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -20,6 +20,22 @@ extensions = [ 'myst_parser', ] +myst_enable_extensions = [ + "amsmath", + "colon_fence", + "deflist", + "dollarmath", + "fieldlist", + "html_admonition", + "html_image", + "linkify", + "replacements", + "smartquotes", + "strikethrough", + "substitution", + "tasklist", +] + intersphinx_mapping = { 'python': ('https://docs.python.org/3/', None), 'sphinx': ('https://www.sphinx-doc.org/en/master/', None),