-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
158 lines (144 loc) · 4.23 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
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
# Project information, site metadata
site_name: Community Lorebooks
site_url: "https://lorebooks.wiki"
site_author: Recap Time Squad and contributors
site_description: >-
An domain service for your documentation and wiki sites.
# Lock the use-directory-urls flag
use_directory_urls: true
# Repository
repo_url: https://github.com/lorebooks-wiki/homepage
edit_uri: blob/staging/docs/
docs_dir: src
# Copyright
copyright: >-
Copyright © 2021-present Recap Time Squad and its contributors, licensed under CC BY-SA 4.0. Recap Time Squad is <a href="https://hackclub.com/fiscal-sponsorship">fiscally sponsored</a> by <a href="https://hackfoundation.org">The Hack Foundation</a> (d.b.a. <a href="https://hackclub.com">Hack Club</a>), a 501(c)(3) US nonprofit (EIN: 81-2908499).
# themeing
theme:
# https://github.com/squidfunk/mkdocs-material
name: material
# for the sidebar/site icon on navbar
icon:
logo: octicons/book-16
# theme for dark modes
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: cyan
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: cyan
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
# - content.tabs.link
- content.tooltips
# - header.autohide
# - navigation.expand
- navigation.footer
- navigation.indexes
# - navigation.instant
# - navigation.prune
- navigation.sections
- navigation.tabs
# - navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
# - toc.integrate
# Extensions
markdown_extensions:
- admonition
- abbr
- attr_list
- def_list
- footnotes
- meta
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: squidfunk
repo: mkdocs-material
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
plugins:
- search
# to have revision dates on the build via git logs, set CI var to true
- git-revision-date-localized:
enable_creation_date: !ENV [CI, false]
enabled: !ENV [CI, false]
fallback_to_build_date: true
- redirects:
redirect_maps:
'tos.md': 'legal/tos.md'
'get-started': 'docs/getting-started.md'
# Page Tree
nav:
- Hub:
- index.md
- faqs.md
- directory.md
- donate.md
- Docs:
- docs/index.md
- "Issue tracker": docs/issue-tracker.md
- "Getting Started": docs/getting-started.md
- "Reserved subdomains": docs/reserved-subdomains.md
- Troubleshooting: docs/troubleshooting.md
- Setup:
- Managing DNS records: docs/setup/dns-records.md
- Setting up redirects: docs/setup/redirects.md
- Parking pages: docs/setup/parking.md
- Project Financial Records: https://hcb.hackclub.com/recaptime-dev
- Legal:
- legal/index.md
- Hosting ToS: legal/tos.md
- Privacy Policy:
- legal/privacy/index.md
- RecapTime.dev docs sites: legal/privacy/recaptime-dev.md
- Community Code of Conduct: https://policies.recaptime.dev/code-of-conduct
- RecapTime.dev Homepage: https://recaptime.dev
extra:
generator: true # DO NOT DISABLE THIS!