-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmkdocs.yml
121 lines (109 loc) · 2.54 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
# See https://github.com/squidfunk/mkdocs-material/blob/master/mkdocs.yml
dev_addr: 127.0.0.1:8888
# Project information
site_name: Platform Services Registry
site_url: https://bcgov.github.io/platform-services-registry
site_author: Platform Services Team
use_directory_urls: false
# Repository
repo_name: bcgov/platform-services-registry
repo_url: https://github.com/bcgov/platform-services-registry
# Copyright
copyright: Copyright © Platform Services Team
docs_dir: docs
theme:
name: material
logo: _assets/logo.png
include_search_page: false
search_index_only: true
language: en
features:
- content.code.annotate
- content.code.copy
- 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
palette:
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- scheme: slate
primary: red
accent: red
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
favicon: _assets/logo.png
icon:
logo: logo
nav:
- Home: index.md
- Docs:
- Clean Code:
- clean-codes/return-early.md
- developer-guide.md
- api-testing.md
- bot-pr-review.md
- ci-cd.md
- database.md
- debug-deployments.md
- email-scenarios-private-cloud.md
- email-scenarios-public-cloud.md
- emou-workflow.md
- git-tips.md
- onboarding-offboarding.md
- react-email.md
- resource-metrics.md
- rocketchat-notifications.md
- selecting-image-scanner.md
- team-conventions.md
- terraform.md
# Extensions
markdown_extensions:
- abbr
- admonition
- attr_list
- codehilite
- def_list
- footnotes
- meta
- md_in_html
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.arithmatex
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tilde
- pymdownx.snippets:
base_path:
- ./
- toc:
permalink: true
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/highlight.min.js
- https://cdnjs.cloudflare.com/ajax/libs/js-polyfills/0.1.43/polyfill.min.js
- _javascripts/highlight.js
extra_css:
- https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/styles/github.min.css