forked from square/okhttp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
76 lines (70 loc) · 2.43 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
site_name: OkHttp
site_url: https://square.github.com/okhttp/
repo_name: OkHttp
repo_url: https://github.com/square/okhttp
site_description: "An HTTP & HTTP/2 client for Android and Java applications"
site_author: Square, Inc.
remote_branch: gh-pages
edit_uri: ""
copyright: 'Copyright © 2019 Square, Inc.'
theme:
name: 'material'
favicon: images/icon-square.png
logo: images/icon-square.png
palette:
primary: 'teal'
accent: 'white'
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.tilde
- pymdownx.tabbed
- tables
nav:
- 'Overview': index.md
- 'Stack Overflow ⏏': https://stackoverflow.com/questions/tagged/okhttp?sort=active
- 'Calls': calls.md
- 'Caching': caching.md
- 'Connections': connections.md
- 'Events': events.md
- 'HTTPS': https.md
- 'Interceptors': interceptors.md
- 'Recipes': recipes.md
- 'Security': security.md
- 'Security Providers': security_providers.md
- 'Works with OkHttp': works_with_okhttp.md
- 'Upgrading to OkHttp 4': upgrading_to_okhttp_4.md
- '4.x API':
- 'okhttp': 4.x/okhttp/okhttp3/index.md
- 'brotli': 4.x/okhttp-brotli/okhttp3.brotli/index.md
- 'dnsoverhttps': 4.x/okhttp-dnsoverhttps/okhttp3.dnsoverhttps/index.md
- 'logging-interceptor': 4.x/okhttp-logging-interceptor/okhttp3.logging/index.md
- 'sse': 4.x/okhttp-sse/okhttp3.sse/index.md
- 'tls': 4.x/okhttp-tls/okhttp3.tls/index.md
- 'urlconnection': 4.x/okhttp-urlconnection/okhttp3/index.md
- 'mockwebserver': 4.x/mockwebserver/okhttp3.mockwebserver/index.md
- '3.12.x API':
- 'okhttp ⏏': https://square.github.io/okhttp/3.x/okhttp/
- 'dnsoverhttps ⏏': https://square.github.io/okhttp/3.x/okhttp-dnsoverhttps/
- 'logging-interceptor ⏏': https://square.github.io/okhttp/3.x/logging-interceptor/
- 'sse ⏏': https://square.github.io/okhttp/3.x/okhttp-sse/
- 'tls ⏏': https://square.github.io/okhttp/3.x/okhttp-tls/
- 'urlconnection ⏏': https://square.github.io/okhttp/3.x/okhttp-urlconnection/
- 'mockwebserver ⏏': https://square.github.io/okhttp/3.x/mockwebserver/
- 'Change Log': changelog.md
- 'Contributing': contributing.md
- 'Code of Conduct': code_of_conduct.md