-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
94 lines (85 loc) · 2.44 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# Project information
site_name: macos-notifications
site_url: https://jorricks.github.io/macos-notifications
site_author: Jorrick Sleijster
site_description: Mac Notifications - Simple interactable Mac notifications without any external dependencies.
# Repository
repo_name: jorricks/macos-notifications
repo_url: https://github.com/jorricks/macos-notifications
# Copyright
copyright: Copyright © 2022 Jorrick Sleijster
# Configuration
theme:
icon:
logo: material/calendar-heart
name: material
palette:
# Palette toggle for light mode
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
# Plugins
plugins:
- search
- termynal
- autorefs
- mkdocstrings:
enable_inventory: true
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
- https://pyobjc.readthedocs.io/en/latest/objects.inv
options:
filters:
- "!__repr__"
- "!__eq__"
annotations_path: brief
show_root_heading: true
show_root_full_path: false
docstring_style: sphinx
line_length: 120
show_signature_annotations: false
show_source: true
docstring_options:
ignore_init_summary: yes
# Customization
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/Jorricks/macos-notifications
- icon: fontawesome/brands/python
link: https://pypi.org/user/jorricks/
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/jorricks/
# Extensions
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.details
- pymdownx.superfences
# Page tree
nav:
- Home: index.md
- User guide: user_guide.md
- Examples: examples.md
- Code documentation:
- Client: code/client.md
- Config: code/notification_config.md
- Process: code/notification_process.md
- Sender: code/notification_sender.md
- Singleton: code/singleton.md
- Frequently asked questions: faq.md
- Release notes: release-notes.md