-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathmkdocs.yml
180 lines (165 loc) · 4.87 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
site_name: PWAsForFirefox
site_description: A tool to install, manage and use Progressive Web Apps (PWAs) in Mozilla Firefox
site_author: filips
site_url: https://pwasforfirefox.filips.si
repo_name: filips123/PWAsForFirefox
repo_url: https://github.com/filips123/PWAsForFirefox
edit_uri: edit/main/docs/docs/
docs_dir: docs
site_dir: dist
theme:
name: material
logo: assets/icons/logo.svg
favicon: assets/icons/favicon.svg
custom_dir: overrides
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep orange
accent: deep orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep orange
accent: deep orange
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.code.select
- navigation.footer
- navigation.instant
- navigation.path
- navigation.prune
- navigation.sections
- navigation.tabs
- navigation.tracking
- search.share
- search.suggest
- toc.follow
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tilde
- toc:
permalink: true
title: Table of Contents
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
plugins:
- search:
separator: '[\s\-,:!=\[\]()"/]+|\.(?!\d)|&[lg]t;'
- minify:
minify_html: true
minify_js: true
minify_css: true
cache_safe: true
htmlmin_opts:
remove_comments: true
reduce_boolean_attributes: true
js_files:
- assets/javascripts/statistics.js
- assets/javascripts/feedback.js
css_files:
- assets/stylesheets/theme.css
- macros
hooks:
- hooks/breadcrumbs.py
- hooks/home.py
- hooks/faq.py
extra_javascript:
- assets/javascripts/statistics.js
- assets/javascripts/feedback.js
extra_css:
- assets/stylesheets/theme.css
extra:
social:
- icon: fontawesome/brands/firefox
link: https://addons.mozilla.org/firefox/addon/pwas-for-firefox/
name: Firefox Add-ons
- icon: fontawesome/brands/github
link: https://github.com/filips123/PWAsForFirefox
name: GitHub
- icon: fontawesome/solid/bug
link: https://github.com/filips123/PWAsForFirefox/issues
name: GitHub Issues
- icon: fontawesome/solid/comments
link: https://github.com/filips123/PWAsForFirefox/discussions
name: GitHub Discussions
analytics:
enabled: !ENV [ CI, false ]
endpoints:
views: https://www.filips.si/tools/pwasforfirefox/views.php
feedback: https://www.filips.si/tools/pwasforfirefox/feedback.php
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: Thanks for your feedback! Help us improve this page by <a href="https://github.com/filips123/PWAsForFirefox/issues/new?labels=enhancement,documentation&template=feature_request.md&title=Documentation feedback+for+*{title}*" target="_blank" rel="noopener">opening an issue</a>.
nav:
- index.md
- Installation:
- installation/requirements.md
- installation/extension.md
- installation/native.md
- installation/updates.md
- User Guide:
- user-guide/extension.md
- user-guide/console.md
- user-guide/browser.md
# - Developer Guide:
# TODO: How to access `firefoxpwa-connector` from third-party programs?
# TODO: Some suggestions for third-party programs and integrations?
# - developer-guide/todo.md
- Resources:
- resources/installation-directories.md
- resources/specific-website-tips.md
- resources/profile-properties.md
- resources/web-app-properties.md
# TODO: Document (un)supported manifest properties, specific web app APIs, etc.
- Help:
- help/support.md
- help/troubleshooting.md
- help/faq.md
- About:
- about/how-it-works.md
- about/supported-features.md
- about/current-limitations.md
- about/privacy-policy.md
- about/contributing.md