-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
102 lines (94 loc) · 2.34 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
# General information about the docs site
site_name: Metabolike
site_url: https://metabolike.readthedocs.io/
site_author: Yi Zhou
copyright: Copyright © 2021 - 2022 Yi Zhou
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/y1zhou
- icon: simple/googlescholar
link: https://scholar.google.com/citations?user=afMR9NEAAAAJ
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/yizhouuga
# Site navigations
watch:
- metabolike
nav:
- Home:
- index.md
- usage/installation.md
- usage/getting_started.md
# defer to gen-files + literate-nav
- API references: reference/
# GitHub-related configs
repo_url: https://github.com/y1zhou/metabolike/
repo_name: y1zhou/metabolike
edit_uri: blob/main/docs/
# Theming with mkdocs-material
theme:
name: material
logo: _static/metabolike-logo-round.png
favicon: _static/metabolike-logo-round.png
font:
text: Roboto
code: JetBrains Mono
icon:
repo: fontawesome/brands/github
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: red
accent: red
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.instant
- navigation.tabs
- navigation.sections
- navigation.indexes
- toc.follow
- navigation.top
- search.suggest
- search.highlight
- content.code.annotate
plugins:
- search
- gen-files:
scripts:
- docs/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- mkdocstrings:
handlers:
python:
paths: [metabolike]
import:
- https://docs.python.org/3/objects.inv
options:
docstring_style: google
docstring_options:
ignore_init_summary: yes
merge_init_into_class: yes
show_submodules: no
markdown_extensions:
- attr_list
- md_in_html
- tables
- footnotes
- def_list
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- admonition
- pymdownx.details
- pymdownx.superfences