-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
73 lines (67 loc) · 1.72 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
site_name: Decoy
site_description: "Opinionated mocking library for Python."
site_author: "Michael Cousins"
site_url: "https://michael.cousins.io/decoy/"
repo_url: "https://github.com/mcous/decoy"
repo_name: "mcous/decoy"
edit_uri: ""
nav:
- Getting Started: index.md
- Usage Guide:
- usage/create.md
- usage/when.md
- usage/verify.md
- usage/matchers.md
- usage/errors-and-warnings.md
- Advanced Usage:
- advanced/properties.md
- advanced/context-managers.md
- api.md
- contributing.md
- license.md
theme:
name: "material"
favicon: img/favicon.ico
icon:
logo: material/duck
features:
- navigation.instant
- navigation.sections
font:
text: "Open Sans"
code: "Fira Mono"
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
accent: indigo
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: amber
accent: yellow
toggle:
icon: material/weather-night
name: Switch to light mode
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
show_root_heading: True
show_object_full_path: True
show_source: False
heading_level: 2
watch:
- decoy
markdown_extensions:
- toc:
permalink: "#"
- admonition
- pymdownx.highlight
- pymdownx.superfences
extra_css:
- stylesheets/extra.css