-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
108 lines (108 loc) · 3.38 KB
/
mkdocs.yml
File metadata and controls
108 lines (108 loc) · 3.38 KB
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
108
# MkDocs configuration file
site_name: Ansible Workshop - Windows Automation
copyright: Copyright © Computacenter 2025
extra_css:
- assets/stylesheets/tables.css
extra_javascript:
- assets/javascripts/extra/refresh-on-toggle-dark-light.js
- assets/javascripts/extra/tablesort.min.js
- assets/javascripts/extra/tablesort.js
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- md_in_html
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.highlight:
anchor_linenums: true
use_pygments: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.snippets:
auto_append:
- includes/abbreviations.md
base_path:
- .
- docs/windows-automation/snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- tables
plugins:
- search:
lang: en
separator: '[\s]'
- autolinks:
- git-revision-date-localized:
# This plugin needs a Git executable and the .git folder
enabled: !ENV [ENABLED_GIT_REVISION_DATE, True]
fallback_to_build_date: true
locale: en
- print-site:
# This plugin should always defined as the last one
add_cover_page: true
add_print_site_banner: true
cover_page_template: "docs/assets/pdf/cover-page.tpl"
enabled: !ENV [ENABLED_PRINT_SITE, True]
print_page_title: ""
print_site_banner_template: "docs/assets/pdf/print-banner.tpl"
theme:
name: material
custom_dir: docs/assets/overrides
icon:
repo: fontawesome/brands/github
admonition:
example: octicons/terminal-24
logo: assets/images/ansible-logo-black.png
language: en
favicon: assets/images/ansible-logo-black.png
features:
- content.code.annotate
- content.code.copy
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.sections
- navigation.tabs
- navigation.top
- search.highlight
- search.suggest
palette:
- scheme: default
primary: light blue
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
primary: grey
toggle:
icon: material/weather-sunny
name: Switch to light mode
repo_url: https://github.com/TimGrt/ansible-windows-workshop
repo_name: timgrt/ansible-windows-workshop
# Navigation definition
nav:
- "Workshop Overview":
- index.md
- preparation.md
- "Exercises":
- "0 - Optional: Configure WinRM on target host": windows-automation/windows-winrm.md
- "1 - Ad-hoc commands": windows-automation/windows-adhoc.md
- "2 - Writing playbooks": windows-automation/windows-playbook.md
- "3 - Sync Project to AAP": windows-automation/windows-project.md
- "4 - Advanced playbook concepts": windows-automation/windows-advanced-playbooks.md
- "5 - Roles": windows-automation/windows-roles.md
- "6 - Optional: Automated Patching": windows-automation/windows-patch.md