-
Notifications
You must be signed in to change notification settings - Fork 11
/
mkdocs.yml
45 lines (45 loc) · 1.18 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
site_name: APIFlask
site_description: Web APIs for Flask.
site_url: https://apiflask.com
docs_dir: docs
theme:
name: material
custom_dir: docs/_templates
logo: _assets/white-logo.png
favicon: _assets/favicon.png
palette:
primary: deep orange
icon:
repo: fontawesome/brands/github
language: en
repo_url: https://github.com/greyli/apiflask
repo_name: greyli/apiflask
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/greyli/apiflask
- icon: fontawesome/brands/twitter
link: https://twitter.com/apiflask
copyright: Copyright © 2021 <a href="https://greyli.com/en" target="_blank" rel="noopener">Grey Li</a>
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.snippets
- toc:
permalink: True
nav:
- Home: index.md
- Quickstart: quickstart.md
- Configuration: configuration.md
- Tutorial: tutorial/index.md
- Examples: examples.md
- Snippets: snippets/index.md
- External Tools: tools/index.md
- Contributing: contributing.md
- Origins and Inspiration: acknowledgement.md
- Changelog: changelog.md
- Authors: authors.md
- API Reference: api.md
plugins:
- search
- mkdocstrings