forked from dphfox/Fusion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
81 lines (77 loc) · 2.5 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
site_name: Fusion
site_url: https://elttob.github.io/Fusion/
repo_name: Elttob/Fusion
repo_url: https://github.com/Elttob/Fusion
theme:
name: material
custom_dir: docs/assets/overrides
logo: assets/logo-animated.png
favicon: assets/logo-dark.svg
palette:
scheme: fusion-dark
primary: black
font:
text: Inter
code: JetBrains Mono
features:
- navigation.tabs
icon:
repo: fontawesome/brands/github
extra_css:
- assets/fusion.css
nav:
- Home: index.md
- Tutorials:
- Get Started: tutorials/index.md
- Fundamentals:
- Creating UI: tutorials/fundamentals/creating-ui.md
- Handling Events: tutorials/fundamentals/handling-events.md
- Storing State: tutorials/fundamentals/storing-state.md
- Computations: tutorials/fundamentals/computations.md
- Changing Properties: tutorials/fundamentals/changing-properties.md
- Changing Children: tutorials/fundamentals/changing-children.md
- "Project 1: Counting Clicks": tutorials/fundamentals/project-1.md
- Further Basics:
- Components: tutorials/further-basics/components.md
- Arrays and Lists: tutorials/further-basics/arrays-and-lists.md
- Compatibility: tutorials/further-basics/compatibility.md
- "Project 2: To-Do List": tutorials/further-basics/project-2.md
- Animation:
- Tweens: tutorials/animation/tweens.md
- Springs: tutorials/animation/springs.md
- "Project 3: Switches": tutorials/animation/project-3.md
- Examples:
- Home: examples/index.md
- API Reference:
- Home: api-reference/index.md
- Errors & Messages: api-reference/errors-and-messages.md
- Instances:
- New: api-reference/api/new.md
- Children: api-reference/api/children.md
- OnEvent: api-reference/api/onevent.md
- OnChange: api-reference/api/onchange.md
- State Management:
- State: api-reference/api/state.md
- Computed: api-reference/api/computed.md
- ComputedPairs: api-reference/api/computedpairs.md
- Compat: api-reference/api/compat.md
- Animation:
- Tween: api-reference/api/tween.md
- Spring: api-reference/api/spring.md
- Extras:
- Home: extras/index.md
- Backgrounds: extras/backgrounds.md
- Brand Guidelines: extras/brand-guidelines.md
markdown_extensions:
- admonition
- attr_list
- meta
- pymdownx.superfences
- pymdownx.betterem
- pymdownx.details
- pymdownx.tabbed
- pymdownx.inlinehilite
- toc:
permalink: true
- pymdownx.highlight:
guess_lang: false