forked from ReactiveCircus/cache4k
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
59 lines (52 loc) · 1.2 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
site_name: 'cache4k'
site_description: "In-memory Cache for Kotlin Multiplatform"
site_author: 'Yang Chen'
site_url: 'https://reactivecircus.github.io/cache4k'
remote_branch: gh-pages
repo_name: 'cache4k'
repo_url: 'https://github.com/ReactiveCircus/cache4k'
copyright: 'Copyright © 2021 Yang Chen'
theme:
name: 'material'
language: 'en'
favicon: 'images/reactive_circus_logo.png'
logo: 'images/reactive_circus_logo.png'
palette:
primary: 'white'
accent: 'white'
font:
text: 'Fira Sans'
code: 'Fira Code'
icon:
repo: fontawesome/brands/github
extra:
social:
- icon: 'fontawesome/brands/github'
link: 'https://github.com/ReactiveCircus/cache4k'
nav:
- 'Overview': index.md
- 'Change Log': changelog.md
- 'API Docs': api/index.html" target="_blank
markdown_extensions:
- admonition
- smarty
- codehilite:
guess_lang: false
linenums: True
- footnotes
- meta
- toc:
permalink: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.smartsymbols
- pymdownx.superfences
- tables
plugins:
- search
- minify:
minify_html: true