-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmkdocs.yml
59 lines (52 loc) · 1.15 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
# Project information
site_name: "Tada"
site_description: Tada! Docs
# site_author:
# site_url:
# Repository
repo_name: Tada-Project/tada
repo_url: https://github.com/Tada-Project/tada
# Configuration
theme:
name: material
language: en
palette:
primary: blue grey
accent: indigo
font:
text: Roboto
code: Roboto Mono
icon:
repo: fontawesome/brands/github
# Page
nav:
- Tada: index.md
- Getting Started: getting-started.md
- Using Tada: using-tada.md
- Contributing: contributing.md
plugins:
- search
- git-revision-date
markdown_extensions:
- toc:
permalink: true
- markdown.extensions.codehilite:
guess_lang: false
- markdown_include.include:
base_path: docs
- admonition
- codehilite
- extra
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_div_format
- pymdownx.tabbed
extra_css:
- 'css/termynal.css'
- 'css/custom.css'
extra_javascript:
# - 'https://unpkg.com/[email protected]/dist/mermaid.min.js'
- 'js/termynal.js'
- 'js/custom.js'