-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
90 lines (74 loc) · 1.88 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
site_name: "Helply"
site_description: "A library that simplifies 'help' command creation for application commands in your disnake bot. Automatically parse and access detailed attributes for your commands."
site_url: "https://dlchamp.github.io/helply"
repo_url: "https://github.com/dlchamp/helply"
repo_name: "dlchamp/helply"
site_dir: "site"
copyright: '© Copyright 2023-present, <a href="https://github.com/DLCHAMP">DLCHAMP'
nav:
- Home:
- Overview: index.md
- License: license.md
- Code Reference: reference/
# - Examples: examples/
- Author's Site: https://dlchamp.com
theme:
favicon: assets/favicon.svg
name: material
features:
- content.code.copy
- navigation.sections
- navigation.tabs
- navigation.top
- search.share
- search.suggest
font:
text: Roboto
code: Roboto Mono
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
accent: purple
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: purple
toggle:
icon: material/weather-night
name: Switch to light mode
markdown_extensions:
- pymdownx.superfences
- admonition
- attr_list
- md_in_html
- def_list
- toc:
permalink: true
plugins:
- search:
separator: '[\s\-,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
- minify:
minify_html: true
- gen-files:
scripts:
- docs/gen_raf_nav.py
- literate-nav:
nav_file: SUMMARY.md
- mkdocstrings:
handlers:
python:
options:
docstring_style: numpy
docstring_section_style: list
docstring_options:
merge_init_into_class: true
watch:
- src/helply
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/dlchamp