|
1 | 1 | ---
|
2 | 2 | nav:
|
3 |
| - - Get Started: |
4 |
| - - Add ReactPy-Router to Your Project: index.md |
5 |
| - - Your First Routed Application: learn/your-first-app.md |
6 |
| - - Advanced Topics: |
7 |
| - - Routers, Routes, and Links: learn/routers-routes-and-links.md |
8 |
| - - Hooks: learn/hooks.md |
9 |
| - - Creating a Custom Router 🚧: learn/custom-router.md |
10 |
| - - Reference: |
11 |
| - - Core: reference/core.md |
12 |
| - - Router: reference/router.md |
13 |
| - - Types: reference/types.md |
14 |
| - - About: |
15 |
| - - Changelog: about/changelog.md |
16 |
| - - Contributor Guide: |
17 |
| - - Code: about/code.md |
18 |
| - - Docs: about/docs.md |
19 |
| - - Community: |
20 |
| - - GitHub Discussions: https://github.com/reactive-python/reactpy-router/discussions |
21 |
| - - Discord: https://discord.gg/uNb5P4hA9X |
22 |
| - - Reddit: https://www.reddit.com/r/ReactPy/ |
23 |
| - - License: about/license.md |
| 3 | + - Get Started: |
| 4 | + - Add ReactPy-Router to Your Project: index.md |
| 5 | + - Your First Routed Application: learn/your-first-app.md |
| 6 | + - Advanced Topics: |
| 7 | + - Routers, Routes, and Links: learn/routers-routes-and-links.md |
| 8 | + - Hooks: learn/hooks.md |
| 9 | + - Creating a Custom Router 🚧: learn/custom-router.md |
| 10 | + - Reference: |
| 11 | + - Router Components: reference/router.md |
| 12 | + - Components: reference/components.md |
| 13 | + - Hooks: reference/hooks.md |
| 14 | + - Types: reference/types.md |
| 15 | + - About: |
| 16 | + - Changelog: about/changelog.md |
| 17 | + - Contributor Guide: |
| 18 | + - Code: about/code.md |
| 19 | + - Docs: about/docs.md |
| 20 | + - Community: |
| 21 | + - GitHub Discussions: https://github.com/reactive-python/reactpy-router/discussions |
| 22 | + - Discord: https://discord.gg/uNb5P4hA9X |
| 23 | + - Reddit: https://www.reddit.com/r/ReactPy/ |
| 24 | + - License: about/license.md |
24 | 25 |
|
25 | 26 | theme:
|
26 |
| - name: material |
27 |
| - custom_dir: overrides |
28 |
| - palette: |
29 |
| - - media: "(prefers-color-scheme: dark)" |
30 |
| - scheme: slate |
31 |
| - toggle: |
32 |
| - icon: material/white-balance-sunny |
33 |
| - name: Switch to light mode |
34 |
| - primary: red # We use red to indicate that something is unthemed |
35 |
| - accent: red |
36 |
| - - media: "(prefers-color-scheme: light)" |
37 |
| - scheme: default |
38 |
| - toggle: |
39 |
| - icon: material/weather-night |
40 |
| - name: Switch to dark mode |
41 |
| - primary: white |
42 |
| - accent: red |
43 |
| - features: |
44 |
| - - navigation.instant |
45 |
| - - navigation.tabs |
46 |
| - - navigation.tabs.sticky |
47 |
| - - navigation.top |
48 |
| - - content.code.copy |
49 |
| - - search.highlight |
50 |
| - icon: |
51 |
| - repo: fontawesome/brands/github |
52 |
| - admonition: |
53 |
| - note: fontawesome/solid/note-sticky |
54 |
| - logo: https://raw.githubusercontent.com/reactive-python/reactpy/main/branding/svg/reactpy-logo-square.svg |
55 |
| - favicon: https://raw.githubusercontent.com/reactive-python/reactpy/main/branding/svg/reactpy-logo-square.svg |
| 27 | + name: material |
| 28 | + custom_dir: overrides |
| 29 | + palette: |
| 30 | + - media: "(prefers-color-scheme: dark)" |
| 31 | + scheme: slate |
| 32 | + toggle: |
| 33 | + icon: material/white-balance-sunny |
| 34 | + name: Switch to light mode |
| 35 | + primary: red # We use red to indicate that something is unthemed |
| 36 | + accent: red |
| 37 | + - media: "(prefers-color-scheme: light)" |
| 38 | + scheme: default |
| 39 | + toggle: |
| 40 | + icon: material/weather-night |
| 41 | + name: Switch to dark mode |
| 42 | + primary: white |
| 43 | + accent: red |
| 44 | + features: |
| 45 | + - navigation.instant |
| 46 | + - navigation.tabs |
| 47 | + - navigation.tabs.sticky |
| 48 | + - navigation.top |
| 49 | + - content.code.copy |
| 50 | + - search.highlight |
| 51 | + icon: |
| 52 | + repo: fontawesome/brands/github |
| 53 | + admonition: |
| 54 | + note: fontawesome/solid/note-sticky |
| 55 | + logo: https://raw.githubusercontent.com/reactive-python/reactpy/main/branding/svg/reactpy-logo-square.svg |
| 56 | + favicon: https://raw.githubusercontent.com/reactive-python/reactpy/main/branding/svg/reactpy-logo-square.svg |
56 | 57 |
|
57 | 58 | markdown_extensions:
|
58 |
| - - toc: |
59 |
| - permalink: true |
60 |
| - - pymdownx.emoji: |
61 |
| - emoji_index: !!python/name:material.extensions.emoji.twemoji |
62 |
| - emoji_generator: !!python/name:material.extensions.emoji.to_svg |
63 |
| - - pymdownx.tabbed: |
64 |
| - alternate_style: true |
65 |
| - - pymdownx.highlight: |
66 |
| - linenums: true |
67 |
| - - pymdownx.superfences |
68 |
| - - pymdownx.details |
69 |
| - - pymdownx.inlinehilite |
70 |
| - - admonition |
71 |
| - - attr_list |
72 |
| - - md_in_html |
73 |
| - - pymdownx.keys |
| 59 | + - toc: |
| 60 | + permalink: true |
| 61 | + - pymdownx.emoji: |
| 62 | + emoji_index: !!python/name:material.extensions.emoji.twemoji |
| 63 | + emoji_generator: !!python/name:material.extensions.emoji.to_svg |
| 64 | + - pymdownx.tabbed: |
| 65 | + alternate_style: true |
| 66 | + - pymdownx.highlight: |
| 67 | + linenums: true |
| 68 | + - pymdownx.superfences |
| 69 | + - pymdownx.details |
| 70 | + - pymdownx.inlinehilite |
| 71 | + - admonition |
| 72 | + - attr_list |
| 73 | + - md_in_html |
| 74 | + - pymdownx.keys |
74 | 75 |
|
75 | 76 | plugins:
|
76 |
| - - search |
77 |
| - - include-markdown |
78 |
| - - git-authors |
79 |
| - - minify: |
80 |
| - minify_html: true |
81 |
| - minify_js: true |
82 |
| - minify_css: true |
83 |
| - cache_safe: true |
84 |
| - - git-revision-date-localized: |
85 |
| - fallback_to_build_date: true |
86 |
| - - spellcheck: |
87 |
| - known_words: dictionary.txt |
88 |
| - allow_unicode: no |
89 |
| - ignore_code: yes |
90 |
| - skip_files: |
91 |
| - - "index.md" |
92 |
| - - "reference\\core.md" |
93 |
| - - "reference/core.md" |
94 |
| - - "reference\\types.md" |
95 |
| - - "reference/types.md" |
96 |
| - - mkdocstrings: |
97 |
| - default_handler: python |
98 |
| - handlers: |
99 |
| - python: |
100 |
| - paths: ["../"] |
101 |
| - import: |
102 |
| - - https://reactpy.dev/docs/objects.inv |
103 |
| - - https://installer.readthedocs.io/en/stable/objects.inv |
104 |
| - |
| 77 | + - search |
| 78 | + - include-markdown |
| 79 | + - git-authors |
| 80 | + - minify: |
| 81 | + minify_html: true |
| 82 | + minify_js: true |
| 83 | + minify_css: true |
| 84 | + cache_safe: true |
| 85 | + - git-revision-date-localized: |
| 86 | + fallback_to_build_date: true |
| 87 | + - spellcheck: |
| 88 | + known_words: dictionary.txt |
| 89 | + allow_unicode: no |
| 90 | + - mkdocstrings: |
| 91 | + default_handler: python |
| 92 | + handlers: |
| 93 | + python: |
| 94 | + paths: ["../"] |
| 95 | + import: |
| 96 | + - https://reactpy.dev/docs/objects.inv |
| 97 | + - https://installer.readthedocs.io/en/stable/objects.inv |
| 98 | + options: |
| 99 | + show_root_heading: true |
| 100 | + show_bases: false |
105 | 101 | extra:
|
106 |
| - generator: false |
107 |
| - version: |
108 |
| - provider: mike |
109 |
| - analytics: |
110 |
| - provider: google |
111 |
| - property: G-XRLQYZBG00 |
| 102 | + generator: false |
| 103 | + version: |
| 104 | + provider: mike |
| 105 | + analytics: |
| 106 | + provider: google |
| 107 | + property: G-XRLQYZBG00 |
112 | 108 |
|
113 | 109 | extra_javascript:
|
114 |
| - - assets/js/main.js |
| 110 | + - assets/js/main.js |
115 | 111 |
|
116 | 112 | extra_css:
|
117 |
| - - assets/css/main.css |
118 |
| - - assets/css/button.css |
119 |
| - - assets/css/admonition.css |
120 |
| - - assets/css/banner.css |
121 |
| - - assets/css/sidebar.css |
122 |
| - - assets/css/navbar.css |
123 |
| - - assets/css/table-of-contents.css |
124 |
| - - assets/css/code.css |
125 |
| - - assets/css/footer.css |
126 |
| - - assets/css/home.css |
| 113 | + - assets/css/main.css |
| 114 | + - assets/css/button.css |
| 115 | + - assets/css/admonition.css |
| 116 | + - assets/css/banner.css |
| 117 | + - assets/css/sidebar.css |
| 118 | + - assets/css/navbar.css |
| 119 | + - assets/css/table-of-contents.css |
| 120 | + - assets/css/code.css |
| 121 | + - assets/css/footer.css |
| 122 | + - assets/css/home.css |
127 | 123 |
|
128 | 124 | watch:
|
129 |
| - - "../docs" |
130 |
| - - ../README.md |
131 |
| - - ../CHANGELOG.md |
132 |
| - - ../LICENSE.md |
133 |
| - - "../src" |
| 125 | + - "../docs" |
| 126 | + - ../README.md |
| 127 | + - ../CHANGELOG.md |
| 128 | + - ../LICENSE.md |
| 129 | + - "../src" |
134 | 130 |
|
135 | 131 | site_name: ReactPy Router
|
136 | 132 | site_author: Archmonger
|
137 | 133 | site_description: It's React-Router, but in Python.
|
138 |
| -copyright: '© |
139 |
| -<div id="year"></div> |
140 |
| -<script> document.getElementById("year").innerHTML = new Date().getFullYear(); </script> |
141 |
| -Reactive Python and affiliates. |
142 |
| -<div class="legal-footer-right"> |
143 |
| -This project has no affiliation to ReactJS or Meta Platforms, Inc. |
144 |
| -</div>' |
| 134 | +copyright: '©<div id="year"></div><script> document.getElementById("year").innerHTML = new Date().getFullYear(); </script>Reactive Python and affiliates.<div class="legal-footer-right">This project has no affiliation to ReactJS or Meta Platforms, Inc.</div>' |
145 | 135 | repo_url: https://github.com/reactive-python/reactpy-router
|
146 | 136 | site_url: https://reactive-python.github.io/reactpy-router
|
147 | 137 | repo_name: ReactPy Router (GitHub)
|
|
0 commit comments