-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzensical.toml
More file actions
160 lines (136 loc) · 4.52 KB
/
Copy pathzensical.toml
File metadata and controls
160 lines (136 loc) · 4.52 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
# 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",
"assets/javascripts/abbreviation-preview.js",
]
watch = ["includes"]
nav = [
{"Modules" = [
"Modules/index.md",
{"Repository Defaults" = "Modules/Repository-Defaults.md"},
{"Standards" = "Modules/Standards.md"},
{"Module types" = "Modules/Module-Types.md"},
{"Test Specification" = "Modules/Test-Specification.md"},
{"Versioning" = "Modules/Versioning.md"},
{"Catalog" = [
"Modules/Catalog/index.md",
]},
{"Process-PSModule" = [
"Modules/Process-PSModule/index.md",
{"Repository Structure" = "Modules/Process-PSModule/repository-structure.md"},
{"Module Anatomy" = "Modules/Process-PSModule/module-anatomy.md"},
{"Module Build Validation" = "Modules/Process-PSModule/module-build-validation.md"},
{"Build, Test, Pack, Publish" = "Modules/Process-PSModule/build-test-pack-publish.md"},
{"Template Quickstart" = "Modules/Process-PSModule/template-quickstart.md"},
{"Module Bootstrap" = "Modules/Process-PSModule/module-bootstrap.md"},
{"Module Development Orchestration" = "Modules/Process-PSModule/module-development-orchestration.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"