forked from pythonalicante/MeetupSelector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
91 lines (81 loc) · 2.37 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
91
site_name: Meetup Selector
copyright: Copyright © 2022-present Python Alicante
dev_addr: 127.0.0.1:8001
repo_url: https://github.com/pythonalicante/MeetupSelector/
repo_name: pythonalicante/MeetupSelector
edit_uri: edit/main/docs/
nav:
- Home: 'index.md'
- How to contribute:
- 'contribute/index.md'
- Tasks: 'contribute/tasks.md'
- Code Style: 'contribute/code_style.md'
- Git: 'contribute/git.md'
- Roadmap: 'roadmap.md'
- Architecture:
- 'architecture/index.md'
- About:
- 'about_us/index.md'
- License: 'about_us/license.md'
- Releases: 'about_us/releases.md'
theme:
name: material
logo: img/PythonAlicanteLogo.png
features:
- navigation.tabs
- navigation.instant
- navigation.expand
- navigation.indexes
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
markdown_extensions:
- footnotes
- tables
- attr_list
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
extra:
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/python_alc
- icon: fontawesome/brands/discord
link: https://discord.gg/aDdTHZSggd
- icon: fontawesome/brands/telegram
link: https://t.me/python_alc
- icon: fontawesome/brands/github-alt
link: https://github.com/pythonalicante
plugins:
- search
- build_plantuml:
render: 'server' # or "local" for local rendering
server: 'http://www.plantuml.com/plantuml' # offical plantuml server
disable_ssl_certificate_validation: true # for self-signed and invalid certs
output_format: 'png' # or "svg"
diagram_root: 'docs/diagrams' # should reside under docs_dir
output_folder: 'out'
input_folder: 'src'
- mkdocstrings:
handlers:
python:
selection:
docstring_style: numpy
rendering:
show_submodules: true
docstring_section_style: table
show_signature: true
show_root_toc_entry: false
heading_level: 3
show_source: false