forked from reactive-python/reactpy-django
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
103 lines (96 loc) · 2.91 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
---
nav:
- Home: index.md
- Get Started:
- Install ReactPy-Django: get-started/installation.md
- Choose a Django App: get-started/choose-django-app.md
- Create a Component: get-started/create-component.md
- Use the Template Tag: get-started/use-template-tag.md
- Render Your View: get-started/render-view.md
- Learn More: get-started/learn-more.md
- Reference:
- Components: features/components.md
- Hooks: features/hooks.md
- Decorators: features/decorators.md
- Utilities: features/utils.md
- Template Tag: features/template-tag.md
- Settings: features/settings.md
- About:
- Contribute:
- Code: contribute/code.md
- Docs: contribute/docs.md
- Running Tests: contribute/running-tests.md
- Community: https://github.com/reactive-python/reactpy/discussions
- Changelog: changelog/index.md
theme:
name: material
custom_dir: docs/overrides
palette:
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/white-balance-sunny
name: Switch to light mode
primary: light blue
accent: light blue
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-night
name: Switch to dark mode
primary: black
features:
- navigation.instant
- navigation.tabs
- navigation.top
- content.code.copy
icon:
repo: fontawesome/brands/github
markdown_extensions:
- toc:
permalink: true
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
linenums: true
- pymdownx.superfences
- pymdownx.details
- pymdownx.inlinehilite
- admonition
- attr_list
plugins:
- search
- git-authors
- include-markdown
- minify:
minify_html: true
minify_js: true
minify_css: true
cache_safe: true
- git-revision-date-localized:
fallback_to_build_date: true
- spellcheck:
known_words: dictionary.txt
allow_unicode: no
ignore_code: yes
extra:
generator: false
extra_css:
- stylesheets/extra.css
watch:
- docs
- mkdocs.yml
- README.md
- CHANGELOG.md
site_name: ReactPy-Django Docs
site_author: Archmonger
site_description: React for Django developers.
copyright: Copyright © 2022 Reactive Python
repo_url: https://github.com/reactive-python/reactpy-django
site_url: https://reactive-python.github.io/reactpy-django
repo_name: reactive-python/reactpy-django
edit_uri: edit/main/docs/src
docs_dir: docs/src