-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
81 lines (79 loc) · 1.91 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: Castella
site_url: https://i2y.github.io/castella
repo_url: https://github.com/i2y/castella
theme:
name: material
language: "en"
logo: images/sweets_kasutera.png
favicon: images/sweets_kasutera.png
features:
# - navigation.tabs
- navigation.top
- navigation.footer
- content.code.annotate
palette:
- scheme: default
primary: red
accent: red
toggle:
icon: material/toggle-switch-off-outline
name: switch to dark mode
- scheme: slate
primary: red
accent: red
toggle:
icon: material/toggle-switch
name: switch to light mode
font:
text: "Roboto"
code: "Roboto Mono"
icon:
repo: fontawesome/brands/github
copyright: "© 2022 Yasushi Itoh"
repo_name: i2y/castella
nav:
- Home: index.md
- Getting started:
- Installation: getting-started.md
- Hello World: hello-world.md
- Layout: layout.md
- Custom Widgets: custom-widgets.md
- Built-in Widgets: widgets.md
- Style: style.md
- Hot restarting: hot-restarting.md
- Hot reloading: hot-reloading.md
- Packaging: packaging.md
- License: license.md
plugins:
search:
lang: 'en'
markdown_extensions:
- pymdownx.tasklist:
custom_checkbox: true
clickable_checkbox: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- attr_list
- md_in_html
- admonition
- toc:
permalink: true
extra:
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/i2y_
name: i2y on Twitter
- icon: fontawesome/brands/github
link: https://github.com/i2y/castella/
files:
- examples/*