forked from left4craft/wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
76 lines (69 loc) · 1.6 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
# Project information
site_name: Left4Craft Wiki
site_description: Left4Craft's wiki - home to guides and other useful information
site_author: Left4Craft
site_url: https://wiki.left4craft.org
# Repository
repo_name: left4craft/wiki
repo_url: https://github.com/left4craft/wiki
# Copyright
copyright: '© 2020 Left4Craft'
# Configuration
theme:
name: material
custom_dir: overrides/
language: en
palette:
scheme: slate
primary: green
accent: green
font:
text: Roboto
code: Roboto Mono
features:
- instant
logo: /img/logo.png
favicon: /img/favicon.ico
# Extras
extra:
social:
- icon: fontawesome/solid/home
link: https://www.left4craft.org
- icon: fontawesome/brands/github-alt
link: https://github.com/left4craft
# Google Analytics
#google_analytics:
# - UA-XXXXXXXX-X
# - auto
plugins:
- search # necessary for search to work
- git-revision-date-localized # last modified date at bottom of page
- awesome-pages # custom nav order
# Extensions
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
- toc:
permalink: true
- footnotes
- meta
# pymd
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed
- pymdownx.tilde