-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
60 lines (56 loc) · 1.41 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
site_name: Generative AI Project Template
site_description: Documentation
site_author: Amine Djeghri
docs_dir: .
# site_url: #TODO: Fill when deployment CI added
#site_dir: public
#repo_url:
#edit_uri: blob/main/docs/
theme:
name: "material" # https://squidfunk.github.io/mkdocs-material/getting-started/
language: en
features: # https://squidfunk.github.io/mkdocs-material/setup/
- search.suggest
- search.highlight
- search.share
- navigation.instant
- navigation.instant.progress
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
# - navigation.sections
- navigation.path
- navigation.indexes
- navigation.top
- toc.follow
- content.code.copy
- content.code.annotate
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:
- mkdocstrings:
default_handler: python
import:
- https://docs.python-requests.org/en/master/objects.inv
load_external_modules: true
handlers:
python:
paths: [., source]
- gen-files:
scripts:
- scripts/gen_doc_stubs.py
- search
- same-dir
- exclude:
glob:
- node_modules/**
- .venv/**