Skip to content

Commit 019f742

Browse files
committed
finally start using MyST
1 parent 7983caf commit 019f742

File tree

3 files changed

+52
-34
lines changed

3 files changed

+52
-34
lines changed

docs/source/conf.py

+16
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,22 @@
105105

106106
# -- Extension Configuration ------------------------------------------------------
107107

108+
# -- MyST Parser --
109+
110+
myst_enable_extensions = [
111+
# "amsmath",
112+
"colon_fence",
113+
# "deflist",
114+
# "dollarmath",
115+
# "html_admonition",
116+
# "html_image",
117+
# "linkify",
118+
# "replacements",
119+
# "smartquotes",
120+
# "substitution",
121+
# "tasklist",
122+
]
123+
108124
# -- sphinx_panel --
109125

110126
# Used to stop the extension from loading bootstrap twice since the `pydata_sphinx_theme`

docs/source/index.md

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# IDOM
2+
3+
:::{toctree}
4+
:hidden:
5+
:caption: User Guide
6+
7+
getting-started/index
8+
creating-interfaces/index
9+
adding-interactivity/index
10+
managing-state/index
11+
escape-hatches/index
12+
:::
13+
14+
:::{toctree}
15+
:hidden:
16+
:caption: Other Resources
17+
18+
understanding-idom/index
19+
contributing/index
20+
reference-material/index
21+
:::
22+
23+
:::{toctree}
24+
:hidden:
25+
:caption: External Links
26+
27+
Source Code <https://github.com/idom-team/idom>
28+
Community <https://github.com/idom-team/idom/discussions>
29+
Issues <https://github.com/idom-team/idom/issues>
30+
:::
31+
32+
IDOM is a powerful Python web framework for building **interactive websites without
33+
needing a single line of Javascript**. It does this by breaking down complex
34+
applications into nestable and reusable chunks of code called
35+
{ref}`"components" <Your First Component>` that allow you to focus on what your
36+
application does rather then how it does it.

docs/source/index.rst

-34
This file was deleted.

0 commit comments

Comments
 (0)