-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
72 lines (64 loc) · 1.63 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
# Site Settings
site_name: fastapi-endpoints
site_url: https://vladNed.github.com/fastapi-endpoints/
site_author: Vlad Nedelcu <vlad@indexone.co>
# Repo Settings
repo_url: https://github.com/vladNed/fastapi-endpoints/
repo_name: vladNed/fastapi-endpoints
# Navigation and content
nav:
- Introduction: index.md
- Quick Start: quick-start.md
- Guides:
Auto Discovery: auto-discovery.md
Exclude Routers: exclude-routers.md
- Contributing: CONTRIBUTING.md
# Theme Customization Settings
theme:
name: material
language: en
palette:
- scheme: default
primary: deep orange
accent: red
toggle:
icon: material/brightness-7
name: Dark Mode
- scheme: slate
primary: deep orange
accent: red
toggle:
icon: material/brightness-4
name: Light Mode
font:
text: Inter
code: IBM Plex Mono
logo: assets/logo.png
favicon: assets/endpoints-favicon.ico
features:
- navigation.footer
- content.code.copy
- content.code.select
extra:
social:
- icon: fontawesome/brands/threads
link: https://www.threads.net/@vladmeisteer
name: vladNed on Threads
- icon: fontawesome/brands/github
link: https://github.com/vladNed
name: vladNed on GitHub
- icon: fontawesome/solid/envelope
link: mailto:vlad@indexone.co
name: Email me at work
extra_css:
- stylesheets/extra.css
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details