This repository has been archived by the owner on Jun 26, 2024. It is now read-only.
generated from aniketmaurya/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 14
/
mkdocs.yml
68 lines (59 loc) · 1.47 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
site_name: TEMPLATE_NAME
site_description: TEMPLATE_DESCRIPTION
site_author: AUTHOR NAME
copyright: 'Copyright © 2021 AUTHOR NAME'
banner_url: https://IMAGE_URL
repo_url: https://github.com/aniketmaurya/python-project-template/
repo_name: aniketmaurya/python-project-template
theme:
name: material
custom_dir: docs/overrides
palette:
- scheme: default
primary: black
accent: deep orange
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
- scheme: slate
primary: black
accent: deep orange
toggle:
icon: material/lightbulb
name: Switch to light mode
logo: https://IMAGE_URL
favicon: https://IMAGE_URL
features:
- search.suggest
- search.highlight
# Necessary for search to work properly
include_search_page: false
search_index_only: true
markdown_extensions:
- meta
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.details
- pymdownx.superfences
- admonition
- pymdownx.emoji:
emoji_index: "!!python/name:materialx.emoji.twemoji"
emoji_generator: "!!python/name:materialx.emoji.to_svg"
- toc:
permalink: true
plugins:
- git-revision-date-localized
- search
- autorefs
- mkdocs-jupyter
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_source: false
extra:
homepage: https://TEMPLATE_URL
nav:
- Introduction: 'index.md'
- Release Notes: 'CHANGELOG.md'