-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
144 lines (134 loc) · 3.46 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
144
site_name: marimo mkdocs
site_url: https://marimo-team.github.io/mkdocs-marimo
site_author: marimo team
site_description: The next generation of Python notebooks
edit_uri: edit/main/docs/
repo_name: mkdocs-marimo
repo_url: https://github.com/marimo-team/mkdocs-marimo
docs_dir: docs/
copyright: '© marimo 2024'
theme:
name: material
font:
text: PT Sans
code: Fira Mono
logo: assets/android-chrome-192x192.png
favicon: assets/favicon.ico
features:
- navigation.instant
- navigation.instant.prefetch
- navigation.tracking
- navigation.path
- navigation.footer
- navigation.top
- navigation.indexes
- navigation.tabs
- navigation.tabs.sticky
- content.code.copy
- content.code.annotate
- toc.integrate
- toc.follow
- search.highlight
- search.share
- search.suggest
- announce.dismiss
palette:
- media: '(prefers-color-scheme)'
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: '(prefers-color-scheme: light)'
scheme: default
primary: teal
accent: pink
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: deep-purple
accent: pink
toggle:
icon: material/brightness-4
name: Switch to system preference
nav:
- Overview: index.md
- Getting Started:
- Installation: getting-started/installation.md
- Quick Start: getting-started/quick-start.md
- Configuration: getting-started/configuration.md
- Embedding the marimo playground: getting-started/blocks.md
- Inline Notebook: getting-started/inline-notebook.md
- Notebooks in Navigation: getting-started/nav_notebook.py
extra:
generator: false
social:
- icon: fontawesome/brands/github
link: https://github.com/marimo-team/marimo
- icon: fontawesome/brands/discord
link: https://marimo.io/discord?ref=docs
- icon: material/email-newsletter
link: https://marimo.io/newsletter
- icon: material/forum
link: https://community.marimo.io
- icon: fontawesome/brands/mastodon
link: https://mastodon.social/@marimo_io
- icon: fontawesome/brands/twitter
link: https://twitter.com/marimo_io
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/marimo-io
- icon: fontawesome/brands/python
link: https://pypi.org/project/marimo/
plugins:
- search
- tags
- marimo: {}
watch:
- mkdocs_marimo
# hooks:
# - mkdocs_marimo/plugin.py
markdown_extensions:
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- meta
- sane_lists
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- class: mermaid
name: mermaid
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
validation:
nav:
omitted_files: warn
not_found: warn
absolute_links: warn
links:
not_found: warn
anchors: warn
absolute_links: warn
unrecognized_links: warn