-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
123 lines (115 loc) · 2.86 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
site_name: Counterweight
site_url: https://www.counterweight.dev
repo_url: https://github.com/JoshKarpel/counterweight
edit_uri: edit/main/docs/
extra_css:
- assets/style.css
watch:
- counterweight/
theme:
name: material
favicon: assets/favicon.png
icon:
logo: fontawesome/solid/terminal
palette:
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
media: "(prefers-color-scheme: light)"
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
media: "(prefers-color-scheme: dark)"
features:
- navigation.instant
- navigation.tracking
- navigation.sections
- navigation.indexes
- toc.follow
- content.code.annotate
- content.code.copy
plugins:
- tags
- search
- mkdocstrings:
handlers:
python:
options:
show_root_heading: true
heading_level: 3
docstring_section_style: spacy
merge_init_into_class: true
show_if_no_docstring: true
show_source: false
show_bases: false
show_symbol_type_heading: true
show_signature_annotations: true
signature_crossrefs: true
separate_signature: true
unwrap_annotated: true
members_order: source
import:
- url: https://docs.python.org/3/objects.inv
domains: [std, py]
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets:
base_path: ['docs/examples/']
check_paths: true
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- attr_list
- def_list
- md_in_html
- pymdownx.tasklist:
custom_checkbox: true
- tables
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/JoshKarpel/counterweight
name: Counterweight on GitHub
nav:
- Home: index.md
- Components:
- components/index.md
- Elements:
- elements/index.md
- elements/div.md
- elements/text.md
- Hooks:
- hooks/index.md
- hooks/use_state.md
- hooks/use_effect.md
- hooks/use_ref.md
- hooks/use_mouse.md
- hooks/use_rects.md
- hooks/use_hovered.md
- Input Handling:
- input-handling/index.md
- input-handling/events.md
- input-handling/controls.md
- Styles:
- styles/index.md
- styles/layout.md
- styles/utilities.md
- Cookbook:
- cookbook/border-titles.md
- cookbook/border-healing.md
- Reference:
- reference/api.md
- reference/changelog.md
- Under the Hood:
- under-the-hood/index.md