forked from google/mesop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
143 lines (137 loc) · 4.2 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
site_name: Mesop
repo_url: https://github.com/google/mesop
repo_name: google/mesop
strict: true
nav:
- index.md
- Getting Started: getting_started.md
- Guides:
- Components: guides/components.md
- Commands: guides/commands.md
- Interactivity: guides/interactivity.md
- Pages: guides/pages.md
- Deployment: guides/deployment.md
- Web Security: guides/web_security.md
- Troubleshooting: guides/troubleshooting.md
- Labs: guides/labs.md
- Components:
- High-level:
- Chat: components/chat.md
- Text to Text: components/text_to_text.md
- Text to Image: components/text_to_image.md
- Layout:
- Box: components/box.md
- Sidenav: components/sidenav.md
- Text:
- Text: components/text.md
- Markdown: components/markdown.md
- Code: components/code.md
- Media:
- Image: components/image.md
- Audio: components/audio.md
- Video: components/video.md
- Form controls:
- Button: components/button.md
- Checkbox: components/checkbox.md
- Input: components/input.md
- Textarea: components/textarea.md
- Radio: components/radio.md
- Select: components/select.md
- Slide toggle: components/slide_toggle.md
- Slider: components/slider.md
- Uploader: components/uploader.md
- Visual:
- Badge: components/badge.md
- Divider: components/divider.md
- Icon: components/icon.md
- Progress bar: components/progress_bar.md
- Progress spinner: components/progress_spinner.md
- Table: components/table.md
- Tooltip: components/tooltip.md
- Styling:
- Style: components/style.md
- Advanced:
- Embed: components/embed.md
- Plot: components/plot.md
- Demo Gallery 🔗: demo.md
- Blog:
- blog/index.md
- Internal:
- Development: internal/development.md
- Architecture: internal/architecture.md
- Goals: goals.md
- New component: internal/new_component.md
- Hot reload: internal/hot_reload.md
- Modes: internal/modes.md
- Testing: internal/testing.md
- Type checking: internal/type_checking.md
- CI: internal/ci.md
- Build / Toolchain: internal/toolchain.md
- Publishing: internal/publishing.md
theme:
name: material
logo: assets/logo.png
favicon: assets/favicon.ico
font: false
palette:
# Palette toggle for light mode
- media: '(prefers-color-scheme: light)'
scheme: mesop-light
toggle:
icon: material/brightness-7
name: Switch to light mode
# Palette toggle for dark mode
- media: '(prefers-color-scheme: dark)'
scheme: mesop-dark
toggle:
icon: material/brightness-4
name: Switch to system preference
features:
- content.code.copy
- navigation.path
- navigation.instant
- navigation.tracking
- navigation.expand
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- search.highlight
extra_css:
- stylesheets/extra.css
markdown_extensions:
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences
- pymdownx.snippets
- admonition
- pymdownx.details
plugins:
- blog
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_options:
ignore_init_summary: true
docstring_section_style: spacy
heading_level: 3
inherited_members: true
merge_init_into_class: true
separate_signature: false
show_signature: false
show_root_heading: true
show_root_full_path: false
show_source: false
show_signature_annotations: true
show_symbol_type_heading: true
show_symbol_type_toc: true
signature_crossrefs: true
summary: true