forked from PrefectHQ/prefect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
64 lines (62 loc) · 1.54 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
site_name: Prefect SDK
site_url: https://docs-3.prefect.io/
repo_url: https://github.com/PrefectHQ/prefect
docs_dir: docs/mkdocs
extra_css:
- stylesheets/theme.css
- stylesheets/admonitions.css
- stylesheets/api_ref.css
- stylesheets/rest_ref.css
- stylesheets/syntax_highlights.css
- stylesheets/extra.css
markdown_extensions:
- admonition
- attr_list
- codehilite
- md_in_html
- meta
- pymdownx.highlight:
use_pygments: true
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
theme:
name: material
features:
- announce.dismiss
- content.code.copy
- navigation.tabs.sticky
- search.suggest
- search.highlight
- navigation.path
- navigation.indexes
- content.tabs.link
font:
text: Inter
code: Source Code Pro
logo: logo-word-white.svg
palette:
- media: "(prefers-color-scheme: light)"
accent: "#0225AC"
primary: "#0225AC"
scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
accent: "#0225AC"
primary: "#0225AC"
scheme: slate
toggle:
icon: material/weather-night
name: Switch to light mode
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [src]
watch:
- mkdocs.yml
- src