-
Notifications
You must be signed in to change notification settings - Fork 12
/
mkdocs.yml
88 lines (81 loc) · 2.23 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
site_name: Methanol
repo_name: mizosoft/methanol
repo_url: https://github.com/mizosoft/methanol/
site_url: https://mizosoft.github.io/methanol/
site_description: 'Lightweight HTTP extensions for Java & Kotlin'
site_author: mizosoft
copyright: Copyright © 2024 mizosoft
extra_css:
- css/style.css
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
- toc:
permalink: true
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/mizosoft
name: mizosoft on GitHub
analytics:
provider: google
property: G-73C6VGJC18
theme:
name: material
icon:
repo: fontawesome/brands/github
logo: material/flask
favicon: images/flask.png
features:
- navigation.top
- navigation.sections
# - navigation.expand
# - navigation.tabs
palette:
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep purple
accent: indigo
toggle:
icon: material/lightbulb
name: Switch to light mode
# Light mode
- purple: "(prefers-color-scheme: light)"
scheme: default
primary: blue grey
accent: indigo
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
nav:
- Overview: index.md
- 🔗 Javadoc: api/latest/
- Documentation:
- Methanol HttpClient: methanol_httpclient.md
- Object Mapping: adapters.md
- Interceptors: interceptors.md
- Caching: caching.md
- Decompression: decompression.md
- Media Types: media_types.md
- Multipart & Forms: multipart_and_forms.md
- Progress Tracking: progress_tracking.md
- Streaming Requests: streaming_requests.md
- Kotlin DSL: kotlin.md
- Redis: redis.md
- Brotli: brotli.md
- Adapters:
- methanol-gson: adapters/gson.md
- methanol-jackson: adapters/jackson.md
- methanol-jackson-flux: adapters/jackson_flux.md
- methanol-jaxb: adapters/jaxb.md
- methanol-jaxb-jakarta: adapters/jaxb_jakarta.md
- methanol-protobuf: adapters/protobuf.md
- methanol-moshi: adapters/moshi.md
- Legacy Adapters: legacy_adapters.md
- Benchmarks: benchmarks.md
- Change Log: CHANGELOG.md