-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
72 lines (64 loc) · 1.61 KB
/
mkdocs.yml
File metadata and controls
72 lines (64 loc) · 1.61 KB
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
# Project information
site_name: 'Botlang'
site_description: 'A scripting language for conversational chat bots'
site_author: 'Mathias Schilling'
site_url: 'https://botlang.org'
site_favicon: 'images/botlang_logo.png'
# Repository
repo_name: 'botlang'
repo_url: 'https://github.com/botlang'
# Copyright
copyright: 'Copyright © 2017 <br><a href="https://www.matchilling.com/">Mathias Schilling</a>'
# Pages
pages:
- Home: 'index.md'
- Documentation:
- 'api/pattern-response-model.md'
- 'api/comments.md'
- 'api/wild-cards.md'
- 'api/multiple-choice-matching.md'
- 'api/string-substitution.md'
- About:
- 'Background': 'about.md'
- 'License': 'license.md'
# Documentation and theme
theme: 'material'
# Options
extra:
logo: 'images/botlang_logo_centered_1000x1000.png'
palette:
primary: 'indigo'
accent: 'indigo'
font:
text: 'Roboto'
code: 'Roboto Mono'
social:
- type: 'github'
link: 'https://github.com/matchilling'
- type: 'twitter'
link: 'https://twitter.com/matchilling'
extra_css:
- 'stylesheets/extra.css'
# Google Analytics
google_analytics:
- 'UA-99502081-1'
- 'auto'
# Extensions
markdown_extensions:
- admonition
- codehilite(guess_lang=false)
- toc(permalink=true)
- footnotes
- pymdownx.arithmatex
- pymdownx.betterem(smart_enable=all)
- pymdownx.caret
- pymdownx.critic
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist(custom_checkbox=true)
- pymdownx.tilde