-
Notifications
You must be signed in to change notification settings - Fork 6
/
mkdocs.yml
65 lines (59 loc) · 1.47 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
site_name: Island Time
site_url: https://islandtime.io
repo_name: island-time
repo_url: https://github.com/erikc5000/island-time
site_description: 'Island Time - A Kotlin Multiplatform library for working with dates and times'
site_author: 'Erik Christensen'
remote_branch: gh-pages
copyright: 'Copyright © 2020-2024 Erik Christensen'
nav:
- index.md
- getting-started.md
- 'The Basics':
- 'basics/overview.md'
- 'basics/dates-and-times.md'
- 'basics/durations.md'
- 'basics/intervals.md'
- 'basics/interop.md'
- 'basics/formatting.md'
- 'basics/parsing.md'
- 'basics/serialization.md'
- 'basics/clocks.md'
- 'Advanced Topics':
- 'advanced/custom-providers.md'
- 'Extensions':
- 'extensions/parcelize.md'
- 'API':
- 'core': 'api/core/index.md'
- 'parcelize-extensions': 'api/extensions/parcelize/index.md'
theme:
name: material
palette:
primary: 'cyan'
accent: 'cyan'
logo: 'assets/images/logo.svg'
favicon: 'assets/images/logo.svg'
custom_dir: 'docs/assets/theme/'
features:
- navigation.instant
- content.tabs.link
markdown_extensions:
- toc:
permalink: true
permalink_title: Permalink
- admonition
- attr_list
- meta
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tilde
- pymdownx.inlinehilite
plugins:
- search
- macros
extra_css:
- assets/stylesheets/extra.css
extra:
versions:
islandtime: '0.6.3'