-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
65 lines (59 loc) · 1.59 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
61
62
63
64
site_name: Kotlin Highlights
site_url: https://kotlin-highlights.netlify.com
site_description: Athenian Kotlin Highlights
site_author: Athenian Programming Team
repo_url: https://github.com//athenian-programming/kotlin-highlights
repo_name: 'GitHub Home'
nav:
- Home: index.md
- Kotlin:
- Sequences:
- sequence {}: sequence.md
- Combining Sequences: combining-sequences.md
- generateSequence {}: generate-sequence.md
- Scope Functions: scope-functions.md
- Delegated Properties:
- Map Delegate: map-delegate.md
- Standard Delegates: standard-delegates.md
- Lazy Delegate: lazy-delegate.md
- User-defined Delegates: user-delegates.md
theme:
name: 'material'
custom_dir: 'docs/custom'
# Don't include MkDocs' JavaScript
include_search_page: false
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: true
- toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- 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
google_analytics: ['UA-153210099-1', 'auto']