-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmkdocs.yml
75 lines (69 loc) · 1.7 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
site_name: Up Bank API
site_description: !ENV SITE_DESCRIPTION
site_author: Joshua Cowie-Willox
site_url: https://jcwillox.github.io/up-bank-api
repo_name: jcwillox/up-bank-api
repo_url: https://github.com/jcwillox/up-bank-api
edit_uri: edit/main/docs/
nav:
- Usage: "index.md"
- Reference:
- "reference/client.md"
- "reference/async_client.md"
- Models:
- "reference/models/accounts.md"
- "reference/models/categories.md"
- "reference/models/transactions.md"
- "reference/models/webhooks.md"
- "reference/enums.md"
- "reference/exceptions.md"
theme:
name: "material"
icon:
logo: fontawesome/solid/play
features:
- navigation.instant
- navigation.expand
- navigation.top
- content.tabs.link
- toc.follow
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: red
accent: yellow
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: red
accent: yellow
toggle:
icon: material/weather-night
name: Switch to light mode
extra_css:
- stylesheets/extra.css
plugins:
- search
- mkdocstrings:
watch:
- upbankapi
handlers:
python:
selection:
docstring_style: google
rendering:
members_order: source
show_root_heading: true
show_source: false
markdown_extensions:
- admonition
- toc:
permalink: "#"
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true