-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
140 lines (140 loc) · 4 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
site_name: Kotbase
site_url: https://kotbase.dev/
site_description: Kotlin Multiplatform library for Couchbase Lite—a lightweight, embedded, syncable, NoSQL database
site_author: Jeff Lockhart
copyright: "© 2024 Jeff Lockhart"
repo_name: Kotbase
repo_url: https://github.com/jeffdgr8/kotbase
remote_branch: gh-pages
docs_dir: 'docs/site'
theme:
name: material
logo: assets/images/logo-icon.svg
favicon: assets/images/logo-icon.svg
font:
text: DM Sans
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
accent: red
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: red
toggle:
icon: material/brightness-4
name: Switch to light mode
icon:
admonition:
link: material/link
important: material/lightbulb-on
features:
- content.code.copy
- content.tabs.link
- navigation.footer
- navigation.instant
- navigation.tabs
- navigation.top
- navigation.tracking
- search.suggest
- toc.follow
extra_css:
- assets/stylesheets/permalink.css
- assets/stylesheets/extra.css
markdown_extensions:
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- tables
- admonition
- pymdownx.details
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- toc:
permalink: ""
- footnotes
- md_in_html
- pymdownx.tilde
plugins:
- search
- macros
- mike:
canonical_version: current
css_dir: assets/stylesheets
javascript_dir: assets/javascripts
extra:
version:
provider: mike
default: current
version_full: 3.1.9-1.1.1
version_objc: 3.1.9
generator: false
social:
- icon: simple/github
link: https://github.com/jeffdgr8
- icon: simple/x
link: https://twitter.com/jeffdgr8
- icon: simple/linkedin
link: https://linkedin.com/in/lockhartjeff/
analytics:
provider: google
property: G-QFS8SG5ZKD
nav:
- Overview:
- Kotbase: index.md
- Differences from Java SDK: differences.md
- Roadmap: roadmap.md
- Change Log: changelog.md
- Community: community.md
- License: license.md
- Getting Started:
- Installation: installation.md
- Supported Platforms: platforms.md
- Build and Run: getting-started.md
- Extension Libraries:
- KTX: ktx.md
- Kermit: kermit.md
- Paging: paging.md
- Documentation:
- Databases: databases.md
- Pre-built Database: prebuilt-database.md
- Scopes and Collections: scopes-and-collections.md
- Documents: documents.md
- Blobs: blobs.md
- Query:
- QueryBuilder: query-builder.md
- SQL++ Query Strings: n1ql-query-strings.md
- SQL++ Server Differences: n1ql-server-differences.md
- SQL++ QueryBuilder Differences: n1ql-query-builder-differences.md
- Query Result Sets: query-result-sets.md
- Live Queries: live-queries.md
- Query Troubleshooting: query-troubleshooting.md
- Full Text Search: full-text-search.md
- Indexing: indexing.md
- Data Sync:
- Remote Sync Gateway: remote-sync-gateway.md
- Intra-device Sync: intra-device-sync.md
- Peer-to-Peer:
- Peer-to-Peer Sync: peer-to-peer-sync.md
- Passive Peer: passive-peer.md
- Active Peer: active-peer.md
- Integrate Custom Listener: integrate-custom-listener.md
- Handling Data Conflicts: handling-data-conflicts.md
- Using Logs: using-logs.md
- Kotlin Extensions: kotlin-extensions.md
- API Reference: ../api" target="_blank