We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b4efc3 commit 0cdc5ebCopy full SHA for 0cdc5eb
source/conf.py
@@ -18,6 +18,9 @@
18
'myst_parser',
19
'sphinxcontrib.mermaid',
20
'sphinx_copybutton',
21
+ "sphinx.ext.autosectionlabel",
22
+ "sphinx.ext.todo",
23
+ "sphinx.ext.viewcode",
24
]
25
26
source_suffix = {
@@ -26,6 +29,25 @@
29
'.md': 'markdown',
27
30
}
28
31
32
+myst_enable_extensions = [
33
+ "amsmath",
34
+ "attrs_inline",
35
+ "colon_fence",
36
+ "deflist",
37
+ "dollarmath",
38
+ "fieldlist",
39
+ "html_admonition",
40
+ "html_image",
41
+ "replacements",
42
+ "smartquotes",
43
+ "strikethrough",
44
+ "substitution",
45
+ "tasklist",
46
+]
47
+
48
+copybutton_prompt_text = r">>> |\.\.\. |\$ "
49
+copybutton_prompt_is_regexp = True
50
51
templates_path = ['_templates']
52
exclude_patterns = []
53
0 commit comments