-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmkdocs.yml
More file actions
46 lines (41 loc) · 904 Bytes
/
mkdocs.yml
File metadata and controls
46 lines (41 loc) · 904 Bytes
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
site_name: Kithon
theme:
name: material
highlightjs: true
hljs_languages:
- yaml
- python
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
primary: teal
accent: amber
repo_name: alploskov/kithon
repo_url: https://github.com/alploskov/kithon
nav:
- Kithon: index.md
- Tools: tools.md
- Kithon-lang: kithon-lang.md
- API: api.md
- Tutorial: tutorial.md
markdown_extensions:
- toc:
permalink: true
- markdown.extensions.codehilite:
guess_lang: false
- admonition
- codehilite
- extra
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.details
extra_css:
- css/termynal.css
- css/custom.css
extra_javascript:
- https://unpkg.com/mermaid@8.4.6/dist/mermaid.min.js
- js/termynal.js
- js/custom.js