-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzensical.toml
More file actions
199 lines (175 loc) · 5.93 KB
/
Copy pathzensical.toml
File metadata and controls
199 lines (175 loc) · 5.93 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
# Zensical configuration
# https://zensical.org/docs/setup/basics/
[project]
site_name = "PSModule / Docs"
site_url = "https://psmodule.io/docs/"
docs_dir = "docs"
repo_name = "PSModule/docs"
repo_url = "https://github.com/PSModule/docs"
edit_uri = "edit/main/docs/"
copyright = "Copyright © 2023 - 2025 PSModule"
extra_css = ["assets/stylesheets/extra.css"]
extra_javascript = [
"https://unpkg.com/tablesort@5.3.0/dist/tablesort.min.js",
"assets/javascripts/tablesort.js",
]
watch = ["includes"]
nav = [
{"PowerShell" = [
"PowerShell/index.md",
{"Standard" = [
"PowerShell/Standard/index.md",
{"Code Layout" = "PowerShell/Standard/Code-Layout.md"},
{"Naming" = "PowerShell/Standard/Naming.md"},
{"Function Structure" = "PowerShell/Standard/Function-Structure.md"},
{"Documentation" = "PowerShell/Standard/Documentation.md"},
{"Readability" = "PowerShell/Standard/Readability.md"},
{"Control Flow" = "PowerShell/Standard/Control-Flow.md"},
{"Output and Errors" = "PowerShell/Standard/Output-and-Errors.md"},
{"Performance" = "PowerShell/Standard/Performance.md"},
{"Testing" = "PowerShell/Standard/Testing.md"},
{"Security" = "PowerShell/Standard/Security.md"},
]},
{"Modules" = [
"PowerShell/Modules/index.md",
{"Standards" = "PowerShell/Modules/Standards.md"},
{"Test Specification" = "PowerShell/Modules/Test-Specification.md"},
{"Versioning" = "PowerShell/Modules/Versioning.md"},
]},
{"Scripts" = [
"PowerShell/Scripts/index.md",
{"Standards" = "PowerShell/Scripts/Standards.md"},
]},
{"DSC" = [
"PowerShell/DSC/index.md",
]},
{"Function Apps" = [
"PowerShell/FunctionApps/index.md",
]},
]},
{"GitHub Actions" = [
"GitHub-Actions/index.md",
{"Standards" = "GitHub-Actions/Standards.md"},
]},
{"Style Guides" = [
"Style-Guides/index.md",
{"GitHub Actions" = "Style-Guides/GitHub-Actions.md"},
{"Markdown" = "Style-Guides/Markdown.md"},
{"PowerShell" = "Style-Guides/PowerShell.md"},
]},
{"Solutions" = [
"Solutions/index.md",
{"Infusing GitHub with PowerShell" = "Solutions/Infusing-GitHub-with-PowerShell.md"},
{"GitHub Copilot Customization" = "Solutions/GitHub-Copilot-Customization-Architecture.md"},
{"Self-Service System" = "Solutions/Self-service-system.md"},
]},
{"Ways of Working" = [
"Ways-of-Working/index.md",
{"Workflow" = "Ways-of-Working/Workflow.md"},
{"Principles" = "Ways-of-Working/Principles.md"},
{"Goal-Setting Framework" = "Ways-of-Working/Goal-Setting.md"},
{"Issue Format" = "Ways-of-Working/Issue-Format.md"},
{"Issue Hierarchy" = "Ways-of-Working/Issue-Hierarchy.md"},
{"PR Format" = "Ways-of-Working/PR-Format.md"},
{"Commit Conventions" = "Ways-of-Working/Commit-Conventions.md"},
{"Review Etiquette" = "Ways-of-Working/Review-Etiquette.md"},
{"README-Driven Context" = "Ways-of-Working/Readme-Driven-Context.md"},
{"Git Worktrees" = "Ways-of-Working/Git-Worktrees.md"},
]},
{"Dictionary" = [
"Dictionary/index.md",
]},
]
[project.theme]
language = "en"
custom_dir = "overrides"
font.text = "Mona Sans"
font.code = "Source Code Pro"
logo = "assets/images/icon.png"
favicon = "assets/images/icon.png"
features = [
"announce.dismiss",
"content.action.edit",
"content.action.view",
"content.code.annotate",
"content.code.copy",
"content.tooltips",
"navigation.footer",
"navigation.indexes",
"navigation.instant",
"navigation.instant.prefetch",
"navigation.instant.preview",
"navigation.instant.progress",
"navigation.tabs",
"navigation.top",
"navigation.tracking",
"search.highlight",
"search.share",
"search.suggest",
"toc.follow",
]
[project.theme.icon]
repo = "material/github"
link = "material/link-variant"
# Palette toggle for automatic mode
[[project.theme.palette]]
media = "(prefers-color-scheme)"
toggle.icon = "material/link"
toggle.name = "Switch to dark mode"
# Palette toggle for dark mode
[[project.theme.palette]]
media = "(prefers-color-scheme: dark)"
scheme = "slate"
primary = "black"
accent = "light blue"
toggle.icon = "material/toggle-switch-off-outline"
toggle.name = "Switch to light mode"
# Palette toggle for light mode
[[project.theme.palette]]
media = "(prefers-color-scheme: light)"
scheme = "default"
primary = "black"
accent = "light blue"
toggle.icon = "material/toggle-switch"
toggle.name = "Switch to system preference"
[project.plugins.meta]
[project.plugins.search]
[project.markdown_extensions.toc]
permalink = "#"
[project.markdown_extensions.attr_list]
[project.markdown_extensions.abbr]
[project.markdown_extensions.admonition]
[project.markdown_extensions.def_list]
[project.markdown_extensions.footnotes]
[project.markdown_extensions.md_in_html]
[project.markdown_extensions.tables]
[project.markdown_extensions.pymdownx.details]
[project.markdown_extensions.pymdownx.superfences]
custom_fences = [
{ name = "mermaid", class = "mermaid", format = "pymdownx.superfences.fence_code_format" },
]
[project.markdown_extensions.pymdownx.tasklist]
custom_checkbox = true
[project.markdown_extensions.pymdownx.snippets]
auto_append = ["includes/abbreviations.md", "includes/links.md"]
[project.extra.consent]
title = "Cookie consent"
description = """
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
"""
actions = ["accept", "reject"]
[[project.extra.social]]
icon = "fontawesome/brands/discord"
link = "https://discord.gg/jedJWCPAhD"
name = "PSModule on Discord"
[[project.extra.social]]
icon = "material/powershell"
link = "https://www.powershellgallery.com/profiles/PSModule.io"
name = "PSModule on the PowerShell Gallery"
[[project.extra.social]]
icon = "fontawesome/brands/github"
link = "https://github.com/PSModule/"
name = "PSModule on GitHub"