This repository has been archived by the owner on May 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
122 lines (110 loc) · 3.11 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# https://www.mkdocs.org/user-guide/configuration/
# Project information
site_name: 'AWS Tools for VMware'
site_description: 'Tools and sample code primarily intended for VMware Cloud on AWS.'
site_author: 'Amazon Web Services, Inc.'
site_url: 'https://awslabs.github.io/aws-tools-for-vmware/'
# Repository
repo_name: 'aws-tools-for-vmware'
repo_url: 'https://github.com/awslabs/aws-tools-for-vmware'
remote_branch: 'gh-pages'
edit_uri: 'blob/main/docs/'
# Copyright
copyright: 'Copyright © 2019 - 2022, Amazon Web Services, Inc. or its affiliates. All rights reserved.'
# Configuration
theme:
name: 'material'
# 404 page
static_templates:
- '404.html'
# Don't include MkDocs' JavaScript
include_search_page: false
search_index_only: true
# Theme
language: 'en'
features:
- content.code.annotate
# - content.tabs.link
# - header.autohide
# - navigation.expand
- navigation.indexes
- navigation.instant
# - navigation.sections
# - navigation.tabs
# - navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
# - toc.integrate
font: false
icon:
logo: 'material/home'
repo: 'fontawesome/brands/github'
extra_css:
- stylesheets/extra.css
# Plugins
plugins:
- search
# Customization
extra:
social:
- icon: 'fontawesome/brands/aws'
link: 'https://aws.amazon.com/vmware/'
- icon: 'fontawesome/brands/github-alt'
link: 'https://github.com/awslabs/aws-tools-for-vmware'
- icon: 'fontawesome/brands/twitter'
link: 'https://twitter.com/AWSOpen'
- icon: 'fontawesome/brands/reddit-alien'
link: 'https://www.reddit.com/r/aws/'
# Extensions
markdown_extensions:
- admonition
- abbr
- attr_list
- def_list
- footnotes
- meta
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: awslabs
repo: aws-sync-routes
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
# Page tree
nav:
- Home: 'index.md'
- PowerShell:
- Upgrade SQL Server Standalone Database Engine Instance: 'powershell/Upgrade-SqlServerStandaloneDatabaseEngineInstance.ps1.md'
- Terraform:
- Deploy x number of shell VMs in VMware Cloud on AWS: 'terraform/Deploy-XNumShellVMs.md'
- About:
- Contributing Guidelines: 'about/contributing.md'
- License: 'about/license.md'