forked from theskumar/python-dotenv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
79 lines (74 loc) · 2.12 KB
/
Copy pathmkdocs.yml
File metadata and controls
79 lines (74 loc) · 2.12 KB
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
site_name: python-dotenv
repo_url: https://github.com/theskumar/python-dotenv
theme:
features:
- content.action.edit # Edit this page
- content.action.view # View source of this pageheme:
- content.code.copy
- toc.follow
- navigation.sections
- navigation.top
- navigation.indexes
- navigation.footer
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: lucide/sun-moon
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: lucide/sun
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: lucide/moon
name: Switch to system preference
markdown_extensions:
- admonition
- md_in_html
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences
- mdx_truly_sane_lists
- pymdownx.snippets:
base_path: ["./"] # Folder(s) where snippets are stored
check_paths: true # Fail build if a snippet is missing
encoding: "utf-8" # Default encoding for reading files
plugins:
- mkdocstrings:
handlers:
python:
options:
docstring_style: google
separate_signature: true
show_root_heading: true
show_symbol_type_heading: true
show_symbol_type_toc: true
- search
nav:
- Home: index.md
- Getting Started: getting-started.md
- How-to Guides:
- guides/index.md
- Configuration Patterns: guides/configuration.md
- Command line: guides/cli.md
- IPython & Jupyter: guides/ipython.md
- Advanced Usage: guides/advanced.md
- Reference:
- reference/index.md
- Python API: reference/api.md
- CLI Reference: reference/cli.md
- File Format: reference/file-format.md
- Changelog: changelog.md
- Contributing: contributing.md
- License: license.md