-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
mkdocs.yaml
82 lines (81 loc) · 2.13 KB
/
mkdocs.yaml
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
76
77
78
79
80
81
82
# $schema: https://squidfunk.github.io/mkdocs-material/schema.json
site_name: lunchable
nav:
- Home 🏠: index.md
- Usage 📖: usage.md
- LunchMoney 🍽️: interacting.md
- Apps and Plugins 🧩: plugins.md
- Command Line Interface ⌨️: cli.md
- API Documentation 🤖: reference/
- Contributing 🤝: contributing.md
theme:
favicon: https://juftin.com/favicon.ico
logo: https://raw.githubusercontent.com/juftin/juftin/main/static/juftin.png
name: material
features:
- navigation.tracking
- content.code.annotate
- content.code.copy
- navigation.indexes
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
accent: purple
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: black
toggle:
icon: material/weather-night
name: Switch to light mode
repo_url: https://github.com/juftin/lunchable
repo_name: lunchable
edit_uri: blob/main/docs/
site_author: juftin
remote_branch: gh-pages
#copyright: Copyright © 2023 Justin Flannery
extra:
generator: false
markdown_extensions:
- toc:
permalink: '#'
- pymdownx.snippets:
- pymdownx.magiclink
- attr_list
- md_in_html
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.superfences
- markdown.extensions.attr_list
- pymdownx.keys
- pymdownx.tasklist
- pymdownx.tilde
- callouts
- pymdownx.details
- pymdownx.emoji
- pymdownx.tabbed:
alternate_style: true
- mkdocs-click:
plugins:
- search
- markdown-exec
- section-index
- autorefs
- mkdocstrings:
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
- https://pandas.pydata.org/docs/objects.inv
options:
docstring_style: numpy
extensions:
- griffe_fieldz
- gen-files:
scripts:
- docs/gen_pages.py
- literate-nav:
nav_file: SUMMARY.md