-
Notifications
You must be signed in to change notification settings - Fork 10
/
mkdocs.yml
60 lines (60 loc) · 1.45 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
site_name: 'ZenKit'
site_url: 'https://zk.gothickit.dev'
copyright: 'Copyright © 2022-2023 GothicKit Contributors.'
repo_url: 'https://github.com/GothicKit/ZenKit'
edit_uri: 'edit/main/docs/'
theme:
name: 'material'
language: 'en'
logo: 'assets/logo-square.png'
favicon: 'assets/logo-square.png'
icon:
repo: 'fontawesome/brands/github'
palette:
scheme: 'slate'
primary: 'red'
features:
- 'navigation.instant'
- 'navigation.tabs'
- 'navigation.sections'
- 'search.suggest'
- 'search.highlight'
- 'content.tabs.link'
- 'content.code.copy'
- 'content.code.annotate'
extra_css:
- 'assets/stylesheets/extra.css'
extra_javascript:
- 'assets/javascript/extra.js'
- 'assets/javascript/mathjax.js'
- 'https://polyfill.io/v3/polyfill.min.js?features=es6'
- 'https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js'
plugins:
- 'search'
- literate-nav:
nav_file: 'SUMMARY.md'
- 'section-index'
markdown_extensions:
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
auto_title: true
- pymdownx.emoji
- pymdownx.tabbed:
alternate_style: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- pymdownx.arithmatex:
generic: true
- 'abbr'
- 'admonition'
- 'footnotes'
- 'tables'
- 'pymdownx.superfences'
- 'pymdownx.inlinehilite'
- 'md_in_html'
- 'pymdownx.details'
- 'def_list'
- 'attr_list'