forked from square/kotlinpoet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
69 lines (63 loc) · 1.76 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
65
66
67
68
69
# pip install mkdocs mkdocs-material
# mkdocs serve
# mkdocs gh-deploy
site_name: KotlinPoet
repo_name: KotlinPoet
repo_url: https://github.com/square/kotlinpoet
site_description: "A Kotlin API for generating .kt source files"
site_author: Square, Inc.
remote_branch: gh-pages
copyright: 'Copyright © 2015 Square, Inc.'
theme:
name: 'material'
logo: 'images/icon-square.png'
favicon: 'images/icon-square.png'
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
primary: 'cyan'
accent: 'deep-purple'
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: 'black'
accent: 'blue-grey'
toggle:
icon: material/weather-sunny
name: Switch to light mode
extra_css:
- 'css/app.css'
markdown_extensions:
- smarty
- codehilite:
guess_lang: false
- footnotes
- meta
- toc:
permalink: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.emoji
- tables
- admonition
nav:
- 'Overview':
- 'KotlinPoet': index.md
- 'Interop - JavaPoet': interop-javapoet.md
- 'Interop - kotlinx-metadata': interop-kotlinx-metadata.md
- 'Interop - KSP': interop-ksp.md
- 'API':
- 'kotlinpoet': 1.x/kotlinpoet/index.html
- 'interop-javapoet': 1.x/interop-javapoet/index.html
- 'interop-kotlinx-metadata': 1.x/interop-kotlinx-metadata/index.html
- 'interop-ksp': 1.x/interop-ksp/index.html
- 'Stack Overflow ⏏': https://stackoverflow.com/questions/tagged/kotlinpoet?sort=active
- 'Change Log': changelog.md
- 'Contributing': contributing.md