-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathmkdocs.yml
More file actions
39 lines (34 loc) · 943 Bytes
/
mkdocs.yml
File metadata and controls
39 lines (34 loc) · 943 Bytes
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
site_name: 'Progressbar'
site_description: 'A terminal progress bar for Java/JVM'
site_author: 'Tongfei Chen'
copyright: 'Copyright © 2015--2026 Tongfei Chen and contributors'
theme:
name: 'material'
palette:
primary: green
accent: indigo
font:
text: 'Source Sans Pro'
code: 'Source Code Pro'
icon:
logo: material/chart-donut
markdown_extensions:
- toc:
permalink: true
- pymdownx.superfences
- pymdownx.highlight
- pymdownx.tabbed:
alternate_style: true
- admonition
repo_name: 'ctongfei/progressbar'
repo_url: 'https://github.com/ctongfei/progressbar'
extra_css: []
nav:
- 'Introduction': 'index.md'
- 'Declarative usage': 'declarative-usage.md'
- 'Imperative usage': 'imperative-usage.md'
- 'Visual styles': 'styles.md'
- 'Builder pattern': 'builder.md'
- 'Kotlin extensions': 'kotlin.md'
- 'Integrating with loggers': 'loggers.md'
- 'Changelog': 'changelog.md'