-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmkdocs.yml
86 lines (75 loc) · 1.84 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
---
# Site details
site_name: 'AWesome SHell'
site_description: Load and use your AWS identities with all your favorite AWS tools
site_author: Hestio
# Source code repo
repo_url: 'https://github.com/hest-io/awsh'
# Style and Theme
theme:
name: material
palette:
accent: 'blue'
social:
- type: 'github'
link: 'https://github.com/hest-io'
# features:
# tabs: true
icon:
logo: material/console
repo: material/github
# Plugins
plugins:
- search
- mermaid2
# Extensions
markdown_extensions:
- markdown_include.include:
base_path: docs/includes
- markdown.extensions.admonition
- markdown.extensions.codehilite:
guess_lang: false
linenums: true
- markdown.extensions.def_list
- markdown.extensions.footnotes
- markdown.extensions.meta
- markdown.extensions.toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- pymdownx.superfences
# custom_fences:
# - name: mermaid
# class: mermaid
# format: !!python/name:pymdownx.superfences.fence_div_format
# Addition JS and CSS
extra_css:
- https://unpkg.com/[email protected]/dist/mermaid.css
- theme/css/hestio-theme.css
extra_javascript:
- https://unpkg.com/[email protected]/dist/mermaid.min.js
# Sitemap
nav:
- 'Getting Started': 'index.md'
- 'User Guide':
- 'Setup AWS Access': 'user-guide/auth-setup.md'
- 'Contributor Guide':
- 'Getting Involved': 'placeholder.md'
- 'Contributing Filters': 'placeholder.md'
- 'Contributing Commands': 'placeholder.md'
- 'Contributing Docs': 'placeholder.md'
- 'Advanced Usage':
- 'Overview': 'placeholder.md'
- 'About the Project':
- 'Release Notes': 'placeholder.md'
- 'FAQ': 'placeholder.md'