Skip to content

Commit 7983caf

Browse files
committed
one more round of organization
1 parent 01ec02b commit 7983caf

File tree

22 files changed

+107
-77
lines changed

22 files changed

+107
-77
lines changed

docs/source/_autogen/developer-apis.rst renamed to docs/source/_autogen/dev-apis.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Developer API
1+
Dev API
22
==============
33

44
.. automodule:: idom._option

docs/source/_exts/autogen_api_docs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
AUTOGEN_DIR.mkdir(exist_ok=True)
1414

1515
PUBLIC_API_REFERENCE_FILE = AUTOGEN_DIR / "user-apis.rst"
16-
PRIVATE_API_REFERENCE_FILE = AUTOGEN_DIR / "developer-apis.rst"
16+
PRIVATE_API_REFERENCE_FILE = AUTOGEN_DIR / "dev-apis.rst"
1717

1818

1919
PUBLIC_TITLE = "User API\n=============\n"
2020
PUBLIC_MISC_TITLE = "Misc Modules\n------------\n"
21-
PRIVATE_TITLE = "Developer API\n==============\n"
21+
PRIVATE_TITLE = "Dev API\n==============\n"
2222
PRIVATE_MISC_TITLE = "Misc Dev Modules\n----------------\n"
2323

2424
AUTODOC_TEMPLATE = ".. automodule:: {module}\n :members:\n"
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Adding Interactivity
2+
====================
3+
4+
.. toctree::
5+
:hidden:
6+
7+
responding-to-events
8+
components-with-state
9+
state-as-a-snapshot
10+
dangers-of-mutability
11+
batched-updates

docs/source/conf.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
"patched_html_translator",
6666
"widget_example",
6767
"build_custom_js",
68+
"myst_parser",
6869
]
6970

7071
# Add any paths that contain templates here, relative to this directory.
@@ -89,7 +90,9 @@
8990
# List of patterns, relative to source directory, that match files and
9091
# directories to ignore when looking for source files.
9192
# This pattern also affects html_static_path and html_extra_path.
92-
# exclude_patterns = []
93+
exclude_patterns = [
94+
"_custom_js",
95+
]
9396

9497
# The name of the Pygments (syntax highlighting) style to use.
9598
pygments_style = None
File renamed without changes.
File renamed without changes.

docs/source/development/contributing.rst renamed to docs/source/contributing/index.rst

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
1-
Contributing
2-
============
1+
Contributing to IDOM
2+
====================
3+
4+
.. toctree::
5+
:hidden:
6+
7+
developer-guide
8+
changelog
9+
roadmap
310

411
.. note::
512

File renamed without changes.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Creating Interfaces
2+
===================
3+
4+
.. toctree::
5+
:hidden:
6+
7+
intro-to-html
8+
your-first-component
9+
parametrizing-components
10+
conditional-rendering
11+
dynamic-layout-structure
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Escape Hatches
2+
==============
3+
4+
.. toctree::
5+
:hidden:
6+
7+
class-components
8+
javascript-components
9+
distributing-javascript
10+
11+
Under construction :)

0 commit comments

Comments
 (0)