forked from postgres/postgres
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmkdocs.yml
184 lines (166 loc) · 4.99 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
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
# MkDocs general configuration
site_name: pg_tde documentation
site_description: Documentation
site_author: Percona LLC
copyright: >
<a href="https://www.percona.com/about">Percona LLC</a> and/or its affiliates © 2025 — <a href="#__consent">Cookie Consent</a>
repo_name: percona/postgres
repo_url: https://github.com/percona/postgres
edit_uri: edit/TDE_REL_17_STABLE/contrib/pg_tde/documentation/docs
use_directory_urls: false
# Theme settings
theme:
name: material
logo: _images/postgresql-mark.svg
favicon: _images/postgresql-fav.svg
custom_dir: _resource/overrides
font:
text: Roboto
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Color theme set to Automatic. Click to change
- media: "(prefers-color-scheme: light)"
scheme: percona-light
primary: custom
accent: custom
toggle:
icon: material/brightness-7
name: Color theme set to Light Mode. Click to change
- media: "(prefers-color-scheme: dark)"
scheme: percona-dark
primary: custom
accent: custom
toggle:
icon: material/brightness-4
name: Color theme set to Dark Mode. Click to change
# Theme features
features:
- search.share
- search.highlight
- content.code.copy
- content.action.view
- content.action.edit
- content.tabs.link
- navigation.top
- navigation.tracking
extra_css:
- https://unicons.iconscout.com/release/v3.0.3/css/line.css
- https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css
- css/percona.css
- css/design.css
- css/osano.css
- css/postgresql.css
- css/landing.css
extra_javascript:
- js/version-select.js
- js/promptremover.js
- js/consent.js
markdown_extensions:
- attr_list
- toc:
permalink: True
- admonition
- md_in_html
- footnotes
- def_list # https://michelf.ca/projects/php-markdown/extra/#def-list
- meta
- smarty:
smart_angled_quotes: true
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.tilde
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tilde
- pymdownx.details
- pymdownx.highlight:
linenums: false
- pymdownx.snippets:
base_path: ["snippets"]
# auto_append:
# - services-banner.md
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
options:
custom_icons:
- _resource/.icons
plugins:
- search:
separator: '[\s\-,:!=\[\]()"/]+|(?!\b)(?=[A-Z][a-z])|\.(?!\d)|&[lg]t;'
- open-in-new-tab:
- git-revision-date-localized:
enable_creation_date: true
enabled: !ENV [ENABLED_GIT_REVISION_DATE, True]
- meta-descriptions:
export_csv: false
quiet: false
enable_checks: false
min_length: 50
max_length: 160
- section-index # Adds links to nodes - comment out when creating PDF
# - htmlproofer # Uncomment to check links - but extends build time significantly
- glightbox
- macros:
include_yaml:
- 'variables.yml' # Use in markdown as '{{ VAR }}'
- with-pdf: # https://github.com/orzih/mkdocs-with-pdf
output_path: '_pdf/PerconaTDE.pdf'
cover_title: 'Percona Transparent Data Encryption'
cover_subtitle: Alpha 1 (2024-03-28)
author: 'Percona Technical Documentation Team'
cover_logo: docs/_images/Percona_Logo_Color.png
debug_html: false
# two_columns_level: 3
custom_template_path: _resource/templates
enabled_if_env: ENABLE_PDF_EXPORT
extra:
version:
provider: mike
analytics:
provider: google
property: G-J4J70BNH0G
feedback:
title: Was this page helpful?
ratings:
- icon: material/emoticon-happy-outline
name: This page was helpful
data: 1
note: >-
Thanks for your feedback!
- icon: material/emoticon-sad-outline
name: This page could be improved
data: 0
note: >-
Thank you for your feedback! Help us improve by using our
<a href="https://docs.google.com/forms/d/1bkWACehjqlwA0AKf-qTJcXvYbOSYgze8iTPXjntqmNo/edit" target="_blank" rel="noopener">
feedback form</a>.
nav:
- Home: index.md
- get-help.md
- features.md
- Get started:
- "1. Install": "install.md"
- "Via apt": apt.md
- "Via yum": yum.md
- "2. Set up": "setup.md"
- "3. Configure WAL encryption (tech preview)": wal-encryption.md
- "4. Test TDE": "test.md"
- functions.md
- command-line-tools.md
- variables.md
- Concepts:
- "What is TDE": tde.md
- table-access-method.md
- How to:
- Set up multi-tenancy: multi-tenant-setup.md
- Use reference to external parameters: external-parameters.md
- Decrypt an encrypted table: decrypt.md
- faq.md
- Release notes:
- "pg_tde release notes": release-notes/release-notes.md
- uninstall.md
- contribute.md