-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
109 lines (102 loc) · 3.75 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
site_name: CelendiDocs
site_url: https://docs.celendi.gg/
site_description: Official documentation pages for Celendi
site_author: Team Celendi
edit_uri: ""
copyright: Copyright © 2023 <a target="_blank" href="https://celendi.gg" target="_blank" rel="noopener">Team Celendi</a> • Docs Distributed under <a target="_blank" href="https://github.com/Celendi/Docs/blob/main/LICENSE" target="_blank" rel="noopener">GNU GPL v3.0</a> • <a href="#__consent">Change Cookie Settings</a>
theme:
name: material
custom_dir: overrides
logo: assets/logos/Celendi_RED.png
favicon: assets/logos/Celendi_RED.png
palette:
scheme: slate
#primary: red # Not needed due to custom css.
features:
- search.suggest
- search.share
- navigation.top
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- toc.integrate
- content.tabs.link
#- announce.dismiss // Disabled atm
plugins:
- search
- minify:
minify_html: true
htmlmin_opts:
# https://htmlmin.readthedocs.io/en/latest/reference.html#main-functions
remove_comments: true
remove_all_empty_space: true
reduce_boolean_attributes: true
remove_optional_attribute_quotes: true
convert_charrefs: true
minify_css: true
css_files:
- assets/stylesheets/custom.css
extra:
generator: false
consent:
title: Cookie consent
actions:
- accept
- reject
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.
extra_css:
- assets/stylesheets/custom.css
nav:
- Home: index.md
- Configuration:
- Allow Mods: configuration/allowmods.md
- Command Configuration: configuration/commandcfg.md
- Command Channel: configuration/commandchannel.md
- DMs: configuration/dms.md
- Logs: configuration/logs.md
- Lounge: configuration/lounge.md
- Mod Role: configuration/modrole.md
- Prefix: configuration/prefix.md
- Starboard: configuration/starboard.md
- Welcomer: configuration/welcomer.md
- Information:
- information/index.md
- Moderation:
- moderation/index.md
- Anime:
- anime/index.md
- Fun:
- fun/index.md
- Meme:
- meme/index.md
- Policies:
- policies/terms.md
- policies/privacy.md
- policies/refund.md
markdown_extensions:
- markdown.extensions.admonition # Highlighted warning/info blocks
- markdown.extensions.attr_list # Set custom HTML attributes {: }
- markdown.extensions.footnotes # Footnotes [^1]
- markdown.extensions.meta # Define meta data (page title and description) at the top of the Markdown document
- markdown.extensions.smarty # Automatically convert dashes, underscore, three-dots and quotes to text symbols
- markdown.extensions.tables # Tables
- markdown.extensions.toc: # Add HTML id attribute to headers
permalink: true # Headers are links to themselves
- pymdownx.betterem: # More intuitive emphasis handling
smart_enable: all # Even smarter for both (asterisk and underscore) syntax => GitHub-like
- pymdownx.details # Collapsible details blocks
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.keys # Keyboard key symbols
- pymdownx.magiclink: # Auto-links non angle bracket URLs and email addresses and allows to shorten and visualise Git repo links
repo_url_shortener: true
repo_url_shorthand: true
- pymdownx.superfences # Indented code blocks, e.g. within lists, admonition, details or tabbed blocks, implies pymdownx.highlight
- pymdownx.tabbed