-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmkdocs.yml
60 lines (55 loc) · 1.46 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: MkDocs Demo
site_url: https://athenian-programming.github.io/mkdocs-demo/
site_description: MkDocs Demo Documentation
site_author: Demo Team
repo_url: https://github.com/athenian-programming/mkdocs-demo
repo_name: 'GitHub Home'
# Insert your Google Tracking ID
google_analytics: [ 'UA-125864726-1', 'auto' ]
nav:
- Home: index.md
- Getting Started: getting-started.md
- Project Layout: layout.md
- Commands: commands.md
- Custom Domain Names: dns.md
- Website Types:
- Project: project.md
- User/Organization: organization.md
theme:
name: 'material'
include_search_page: false # Don't include MkDocs' JavaScript
search_index_only: true
language: en
feature:
tabs: false
palette:
primary: indigo
accent: indigo
font:
text: Roboto
code: Roboto Mono
logo: 'images/owls.jpg'
favicon: 'assets/images/favicon.ico'
markdown_extensions:
- admonition
- codehilite:
linenums: false # true if website has code
- toc:
permalink: true
- pymdownx.arithmatex
- 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.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde