generated from febus982/bootstrap-python-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
78 lines (69 loc) · 1.97 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
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
site_name: Cloudevents pydantic
site_description: 'An implementation of the CloudEvents spec using pydantic'
site_author: 'Federico Busetti'
docs_dir: docs/
repo_name: 'febus982/cloudevents-pydantic'
repo_url: 'https://github.com/febus982/cloudevents-pydantic'
plugins:
- search
- mike
- awesome-pages
# - macros:
# modules:
# - mkdocs_macros_adr_summary
# - gen-files:
# scripts:
# - scripts/gen_pages.py # or any other name or path
# - mkdocstrings:
# handlers:
# python:
# options:
# docstring_style: sphinx
# docstring_section_style: spacy
# Do not use the nav section in this file but reference to the .pages files
# in the docs/ directory and subdirectories (awesome-pages plugin)
# https://github.com/lukasgeiter/mkdocs-awesome-pages-plugin
#nav:
# - Home: index.md
theme:
name: material
custom_dir: mkdocs-overrides
features:
- navigation.expand
- navigation.top
- content.code.copy
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
media: "(prefers-color-scheme: dark)"
primary: teal
toggle:
icon: material/brightness-4
name: Switch to light mode
# Palette toggle for light mode
- scheme: default
media: "(prefers-color-scheme: light)"
primary: teal
toggle:
icon: material/brightness-7
name: Switch to auto mode
extra:
social:
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/federico-b-a0b78232
version:
provider: mike
default: stable
markdown_extensions:
- pymdownx.blocks.admonition
- pymdownx.blocks.details
- pymdownx.blocks.tab:
alternate_style: true
- pymdownx.snippets
- pymdownx.superfences