-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
72 lines (71 loc) · 2.15 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
site_name: automate
site_description: Templatize patterns from your own codebase, make them programmable, then share them with your team
site_url: https://jezzsantos.github.io/automate/
repo_url: https://github.com/jezzsantos/automate/
edit_uri: edit/main/docs/
markdown_extensions:
- toc:
permalink: "#"
- def_list
- admonition
- attr_list
- md_in_html
- pymdownx.tasklist:
custom_checkbox: true
clickable_checkbox: true
- pymdownx.highlight:
linenums: true
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
plugins:
- glightbox
extra_css:
- stylesheets/extra.css
theme:
name: material
logo: logo.svg
font:
# Any of the https://fonts.google.com/
text: Source Sans Pro
code: JetBrains Mono
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: amber
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: yellow
toggle:
icon: material/brightness-4
name: Switch to light mode
nav:
- 'Installing': 'installation.md'
- 'How It Works': 'howitworks.md'
- 'Evaluating automate': 'evaluating.md'
- 'Your First Toolkit': 'tutorial.md'
- 'Developers Guide':
- 'Command Line (CLI)':
- 'Install CLI': 'installation.md'
- 'Using Toolkits': 'runtime.md'
- 'Making Toolkits': 'authoring.md'
- 'Additional Options': 'clioptions.md'
- 'Jetbrains Rider Plugin':
- 'Install Plugin': 'installation-rider-plugin.md'
- 'Using Toolkits': 'runtime-plugin.md'
- 'Making Toolkits': 'authoring-plugin.md'
- 'Reference': 'reference.md'
- About:
- 'GitHub': 'https://github.com/jezzsantos/automate'
- 'License': 'https://github.com/jezzsantos/automate/blob/main/LICENSE'
- 'Releases': 'https://github.com/jezzsantos/automate/releases'
- 'Contributors': 'Contributors/contributors.md'
- Privacy: 'privacy.md'