-
Notifications
You must be signed in to change notification settings - Fork 7
/
mkdocs.yml
94 lines (94 loc) · 2.51 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
site_name: Cami Web Components
repo_url: https://github.com/kennyfrc/cami.js
repo_name: Cami.js
theme:
name: material
icon:
repo: fontawesome/brands/github
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/lightbulb
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/lightbulb-outline
name: Switch to system preference
font:
text: Noto Sans
language: en
features:
- navigation.tracking
- navigation.tabs
- navigation.expand
- navigation.sections
- navigation.indexes
- navigation.footer
- content.code.copy
- search.suggest
- search.highlight
- search.share
- toc.follow
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
plugins:
- blog
- search
nav:
- Introduction:
- index.md
- features/features.md
- features/observable_property.md
- features/reactive_web_components.md
- features/async_state_management.md
- features/client_state_management.md
- features/streams.md
- API Reference:
- API Index: api/index.md
- api/reactive_element.md
- api/console_functions.md
- api/observable.md
- api/observable_state.md
- api/observable_store.md
- api/observable_stream.md
- HTTP: api/http.md
- Learn by Example:
- learn_by_example/counter.md
- learn_by_example/counter_interval.md
- learn_by_example/form_validation.md
- learn_by_example/todo_list_server.md
- learn_by_example/todo_list_simple.md
- learn_by_example/todo_list_attributes.md
- learn_by_example/cart.md
- learn_by_example/blog.md
- learn_by_example/nested_updates.md
- learn_by_example/modal.md
- learn_by_example/popover.md
- learn_by_example/anchored_popover.md
- learn_by_example/temperature_converter.md
- learn_by_example/flight_booker.md
- learn_by_example/timer.md
- learn_by_example/contact_manager.md
- learn_by_example/circle_drawer.md
extra_javascript:
- javascripts/cami.cdn.js
extra:
social:
-
icon: fontawesome/brands/github
link: https://github.com/kennyfrc/cami.js
copyright: Copyright © 2023 Kenn Costales
extra_files:
- CNAME