-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
115 lines (107 loc) · 2.96 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# mkdocs.yml
site_name: Helldive.py
site_description: Docs for the helldive.py library.
site_author: AJXD2
site_url: https://helldivepy.ajxd2.dev
repo_name: ajxd2/helldive.py
repo_url: https://github.com/ajxd2/helldive.py
theme:
name: material
logo: images/favicon.png
language: en
features:
- navigation.indexes
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress
- navigation.sections
- navigation.tracking
- navigation.path
- navigation.top
- navigation.footer
- navigation.tabs
- content.code.copy
- content.code.select
palette:
scheme: slate
primary: teal
accent: teal
favicon: images/favicon.png
extra:
consent:
title: Cookie consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
analytics:
provider: google
property: G-YS5CTZLJFE
social:
- icon: fontawesome/brands/github
link: https://github.com/ajxd2
- icon: fontawesome/brands/youtube
link: https://youtube.com/@ajxd2
- icon: fontawesome/brands/docker
link: https://hub.docker.com/u/ajxd2
- icon: fontawesome/brands/python
link: https://pypi.org/project/helldivepy/
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- admonition
- footnotes
- codehilite
- pymdownx.snippets
- pymdownx.inlinehilite
- pymdownx.details
- pymdownx.superfences
- attr_list
- md_in_html
- pymdownx.tabbed:
alternate_style: true
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [./]
options:
members: true
members_order: source
show_source: true
show_root_heading: true
show_root_full_path: true
show_root_members_full_path: true
show_object_full_path: true
show_category_heading: true
show_if_no_docstring: true
filters:
- "!^_"
- "!^__"
docstring_section_style: spacy
merge_init_into_class: true
show_signature: true
show_signature_annotations: true
separate_signature: true
docstring_style: google
nav:
- Home:
- Introduction: index.md
- Installation: installation.md
- Links: links.md
- API Reference:
- Overview: api/index.md
- Helldive.py:
- api/constants.md
- api/enums.md
- api/models.md
- api/routes.md
- api/utils.md