-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmkdocs.yml
107 lines (95 loc) · 2.47 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# Project main info
site_name: terraglue
site_url: https://terraglue.readthedocs.io/en/latest/
site_author: Thiago Panini
site_description: >-
Providing an easy way to deploy a Glue job in any AWS account using Terraform
# Source repo info
repo_name: ThiagoPanini/terraglue
repo_url: https://github.com/ThiagoPanini/terraglue
# Copyright
copyright: |
Copyright © 2023 <a href="https://github.com/ThiagoPanini" target="_blank" rel="noopener">ThiagoPanini</a>
# Setting up docs dir
docs_dir: docs/mkdocs
# Setting up theme
theme:
name: material
# Pointing a additional dir for custom setup
custom_dir: docs/assets
# Setting up a custom icon for site header
icon:
logo: custom/custom-icon
# Setting up a color palette
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/weather-sunny
name: Tap for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep purple
accent: deep purple
toggle:
icon: material/weather-night
name: Tap for light mode
# Setting up template features
features:
- navigation.tabs
- navigation.top
- navigation.instant
- navigation.footer
- navigation.indexes
- content.tabs.link
- content.tooltips
- search.share
- search.highlight
- search.suggest
- content.code.copy
# Setting up navigation
nav:
- Home:
- Home: index.md
- Project Story: story.md
- Quickstart:
- Getting Started: quickstart/gettingstarted.md
- Demos:
- About The Demos: demos/about.md
- Production Mode: demos/production-mode.md
- Learning Mode: demos/learning-mode.md
- Variables:
- Module Variables: variables/variables.md
- Validations: variables/validations.md
# Setting up MkDocs extensions
markdown_extensions:
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.emoji
- pymdownx.mark
- pymdownx.tilde
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.details
- footnotes
- markdown.extensions.tables
- markdown.extensions.footnotes
- attr_list
- toc:
permalink: true
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
options:
custom_icons:
- overrides/.icons
# Custom CSS
extra_css:
- stylesheets/extra.css
# Plugins
plugins:
- search:
lang: en
- mkdocstrings