-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmkdocs.yml
126 lines (120 loc) · 3.47 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
site_name: PuePy Documentation
site_url: https://docs.puepy.dev/
site_author: Ken Kinder
repo_name: kkinder/puepy
repo_url: https://github.com/kkinder/puepy
edit_uri: edit/main/docs/
theme:
icon:
repo: fontawesome/brands/github
name: material
custom_dir: docs/overrides
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
features:
- content.code.annotate
- navigation.footer
- content.code.copy
- content.code.select
- content.tooltips
- content.action.edit
markdown_extensions:
- abbr
- admonition
- pymdownx.details
- pymdownx.superfences
- tables
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets:
url_download: true
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
plugins:
- search
- macros
- mike:
alias_type: redirect
redirect_template: null
canonical_version: stable
version_selector: true
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [/code/puepy, /opt/buildhome/clone]
options:
show_source: true
nav:
- Home: index.md
- Installation: installation.md
- Tutorial:
- 'Using This Tutorial': tutorial/00-using-this-tutorial.md
- 'Hello World': tutorial/01-hello-world.md
- 'Hello, Name': tutorial/02-hello-name.md
- 'Events': tutorial/03-events.md
- 'Using Refs': tutorial/04-refs.md
- 'Watchers': tutorial/05-watchers.md
- 'Components': tutorial/06-components.md
- 'Routing': tutorial/07-routing.md
- 'Using PyPi Libraries': tutorial/08-pypi-libraries.md
- 'Using Web Components': tutorial/09-using-web-components.md
- 'A full app': tutorial/10-full-app.md
- Developer Guide:
- 'Reactivity': guide/reactivity.md
- 'In-Depth Components': guide/in-depth-components.md
- 'Advanced Routing': guide/advanced-routing.md
- 'Runtimes': guide/runtimes.md
- 'CSS Classes': guide/css-classes.md
- 'PyScript Config': guide/pyscript-config.md
- 'Cookcook':
- 'Loading Indicators': cookbook/loading-indicators.md
- 'Navigation Guards': cookbook/navigation-guards.md
- Reference:
- 'puepy.Application': reference/application.md
- 'puepy.core.Tag': reference/tag.md
- 'puepy.Component': reference/component.md
- 'puepy.router': reference/router.md
- 'puepy.Prop': reference/prop.md
- 'puepy.reactivity': reference/reactivity.md
- 'puepy.storage': reference/storage.md
- 'puepy.exceptions': reference/exceptions.md
- FAQ: faq.md
- Links:
- GitHub: https://github.com/kkinder/puepy
- PuePy.dev: https://puepy.dev
extra_css:
- extra/extra.css
hooks:
- docs/puepy_hooks.py
extra:
project_version: "0.6.2"
version:
provider: mike
default:
- stable
- development