-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmkdocs.yml
More file actions
40 lines (37 loc) · 914 Bytes
/
mkdocs.yml
File metadata and controls
40 lines (37 loc) · 914 Bytes
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
site_name: Meatie
repo_url: https://github.com/pmateusz/meatie
repo_name: GitHub
theme:
name: material
favicon: images/favicon.png
palette:
primary: brown
scheme: slate
features:
- content.code.copy
nav:
- Home: index.md
- Cookbook: cookbook.md
- Tutorials:
- Getting Started: tutorials/getting_started.md
- Authentication: tutorials/authentication.md
- Rate Limiting: tutorials/rate_limiter.md
- Caching: tutorials/caching.md
- Shared Configuration: tutorials/shared_config.md
- Reference: references.md
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_style: google
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences