-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
185 lines (174 loc) · 4.3 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
183
184
185
copyright: Copyright © 2020-2024 OS4D ltd.
dev_addr: 127.0.0.1:8001
docs_dir: docs
edit_uri: 'blob/develop/docs/'
repo_url: https://github.com/bitcaster-io/bitcaster
site_author: Bitcaster Team
site_description: "The multichannel broker for managing corporate messaging"
site_dir: ./~build/docs
site_name: Bitcaster
site_url: https://bitcaster-io.github.io/bitcaster/
strict: false
extra_css:
- _theme/css/style.css
extra_javascript:
- _theme/js/js.cookie.js
- _theme/js/address.js
exclude_docs: |
~*
.m_templates
.templates
_scripts
_guidelines
markdown_extensions:
# - abbr
- admonition
- attr_list
- def_list
# - footnotes
- md_in_html
# - mdx_gh_links:
# user: bitcaster
# repo: bitcaster
# - mkdocs-click
# - pymdownx.details
# - pymdownx.critic
# - pymdownx.caret
# - pymdownx.keys
# - pymdownx.mark
# - pymdownx.tilde
# - pymdownx.inlinehilite
# - pymdownx.emoji:
# emoji_index: !!python/name:material.extensions.emoji.twemoji
# emoji_generator: !!python/name:material.extensions.emoji.to_svg
# - pymdownx.highlight:
# use_pygments: true
# anchor_linenums: true
# line_spans: __span
# pygments_lang_class: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.snippets:
base_path: '.'
check_paths: true
# - pymdownx.tabbed:
# - smarty
- tables
- toc:
permalink: #
baselevel: 1
extra:
generator: true
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.
social:
- icon: fontawesome/brands/github
link: https://github.com/bitcaster-io
- icon: fontawesome/brands/docker
link: https://hub.docker.com/r/bitcaster/bitcaster
theme:
name: "material"
color_mode: auto
custom_dir: docs/_theme/overrides
favicon: _theme/img/favicon.ico
logo: _theme/img/logo.png
# highlightjs: true
# hljs_languages:
# - yaml
# - django
user_color_mode_toggle: true
features:
# - content.action.edit
# - content.code.annotate
- content.code.copy
# - content.tooltips
# - header.autohide
# - navigation.footer
- navigation.indexes
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress
palette:
# Palette toggle for light mode
- scheme: default
primary: red
media: "(prefers-color-scheme: light)"
toggle:
icon: material/weather-sunny
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: red
media: "(prefers-color-scheme: dark)"
toggle:
icon: material/weather-night
name: Switch to light mode
plugins:
- autorefs
- awesome-pages
- ezglossary:
templates: docs/_theme/glossary
inline_refs: short
list_definitions: true
list_references: true
# - ezlinks:
# wikilinks: true
- link-marker
# - mkdocstrings
- macros
# module_name: source_code
- minify:
minify_html: true
minify_js: true
minify_css: true
htmlmin_opts:
remove_comments: true
cache_safe: true
js_files:
- _theme/js/address.js
css_files:
- _theme/css/style.css
- redirects:
redirect_maps:
'help/channel.md': 'glossary/terms/channel.md'
# 'some_file.md': 'http://external.url.com/foobar'
- include-markdown:
encoding: ascii
preserve_includer_indent: false
dedent: false
trailing_newlines: true
comments: false
rewrite_relative_urls: true
heading_offset: 0
recursive: true
- privacy
- search
- social
# - autolinks
# - blog:
# blog_dir: howto
# blog_toc: true
# post_dir: "{blog}/posts"
# post_date_format: ""
# post_url_max_categories: 1
## post_excerpt: optional
# post_readtime: false
# archive: false
# categories: false
# authors: false
# pagination: false
# draft: false
- tags:
tags_file: tags.md
watch:
- docs/
hooks:
- docs/_hooks/hooks.py