-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmkdocs.yml
32 lines (32 loc) · 849 Bytes
/
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
site_name: pyparam
theme:
palette:
primary: blue grey
favicon: favicon.png
logo: favicon.png
name: 'material'
# font:
# text: 'Ubuntu'
# code: 'Ubuntu Mono'
markdown_extensions:
- markdown.extensions.admonition
- pymdownx.superfences:
preserve_tabs: true
- toc:
baselevel: 2
plugins:
- search # necessary for search to work
- mkapi
extra_css:
- style.css
nav:
- 'Home': 'index.md'
- 'Defining parameters': 'TypesOfParams.md'
- 'Commands': 'commands.md'
- 'Parsing from command line': 'fromCommandline.md'
- 'Loading from dict/config file': 'fromDict.md'
- 'Help page': 'helpPage.md'
- 'Using the parsed values': 'useTheValues.md'
- 'Shell completion': 'shellCompletion.md'
- 'API': mkapi/api/pyparam
- 'Change log': 'changeLog.md'