Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ autodocsumm==0.2.11
myst-parser~=1.0.0
pandas
sphinx-material==0.0.36
sphinxcontrib-mermaid==0.9.2
sphinxemoji==0.2.0
6 changes: 4 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,13 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

extensions = [
"sphinx.ext.coverage",
"sphinx.ext.napoleon",
"autodocsumm",
"myst_parser",
"sphinxcontrib.mermaid",
"sphinxemoji.sphinxemoji",
"sphinx.ext.coverage",
"sphinx.ext.mathjax",
"sphinx.ext.napoleon",
"sphinx.ext.doctest",
"sphinx_material",
]
Expand All @@ -53,6 +54,7 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output

html_theme = "sphinx_material"
html_last_updated_fmt = ""
html_show_sourcelink = False
html_sidebars = {
"**": [
Expand Down
10 changes: 10 additions & 0 deletions docs/source/demo/tree.md
Original file line number Diff line number Diff line change
Expand Up @@ -947,3 +947,13 @@ flowchart TB
0("a") --> 0-1("c")
classDef default stroke-width:1
```

```{mermaid}
%%{ init: { 'flowchart': { 'curve': 'basis' } } }%%
flowchart TB
0("a") --> 0-0("b")
0-0 --> 0-0-0("d")
0-0 --> 0-0-1("e")
0("a") --> 0-1("c")
classDef default stroke-width:1
```
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ dependencies = [
"pandas",
"pydot",
"Pillow",
"sphinxcontrib-mermaid==0.9.2",
"sphinxemoji==0.2.0",
"sphinx-material==0.0.36"
]
Expand Down