-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.yml
112 lines (101 loc) · 2.93 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
site_name: ClearURLs
site_description: ClearURLs Documentation
site_author: ClearURLs
site_url: https://docs.clearurls.xyz
dev_addr: 0.0.0.0:8000
repo_name: 'ClearURLs/Addon'
repo_url: 'https://github.com/ClearURLs/Addon'
edit_uri: https://gitlab.com/anti-tracking/ClearURLs/docs/-/edit/master/content
docs_dir: 'content'
# https://squidfunk.github.io/mkdocs-material/
theme:
name: 'material'
language: en
include_sidebar: true
favicon: assets/img/favicon.ico
logo: assets/img/logo-inverse.svg
custom_dir: overrides
features:
- navigation.instant
- navigation.top
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: orange
accent: red
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: orange
accent: red
toggle:
icon: material/toggle-switch
name: Switch to light mode
i18n:
prev: 'Previous'
next: 'Next'
icon:
repo: fontawesome/brands/github
copyright: "Copyright © 2021-2022 ClearURLs"
extra:
version:
provider: mike
social:
- icon: fontawesome/brands/github
link: https://github.com/ClearURLs/Addon
name: GitHub repo of ClearURLs
- icon: fontawesome/brands/gitlab
link: https://gitlab.com/KevinRoebert/ClearUrls
name: GitLab repo of ClearURLs
# - icon: fontawesome/brands/docker
# link: https://hub.docker.com/r/
# name: Docker repo of ClearURLs
- icon: fontawesome/brands/gitter
link: https://gitter.im/ClearURLs/ClearURLs
name: Connect to ClearURLs on Gitter
- icon: fontawesome/brands/twitter
link: https://twitter.com/clearurls
name: Connect to ClearURLs on Twitter
extra_css:
- assets/style/content.css
- assets/style/atom-one-light.css
extra_javascript:
- assets/js/mermaid.min.js
- assets/js/hljs/highlight.min.js # Download from https://highlightjs.org/download/
- assets/js/extra.js
plugins:
- search
- git-revision-date-localized:
type: date
fallback_to_build_date: true
markdown_extensions:
- admonition
- toc:
permalink: true
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.highlight:
use_pygments: false # hljs is used instead of pygment for TOML highlighting support
- pymdownx.smartsymbols
- pymdownx.superfences:
# make exceptions to highlighting of code:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_div_format
- pymdownx.tasklist
- attr_list
- pymdownx.tabbed
- pymdownx.critic
# Page tree
nav:
- 'Overview': 'index.md'
- 'FAQ': 'faq.md'
- 'Permissions': 'permissions.md'
- 'Specifications':
- 'Rule Catalogs': 'specs/rules.md'
- 'Further Readings':
- 'Similar Addons': 'further_readings/similar_addons.md'
- 'Excluded Fields': 'further_readings/excluded_fields.md'