-
Notifications
You must be signed in to change notification settings - Fork 5
/
mkdocs.yml
64 lines (61 loc) · 1.9 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
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
# General setup
site_name: Tiler
site_url: https://tunjid.github.io/Tiler/
site_author: Adetunji Dahunsi
site_description: A reactive state based pagination library
theme:
name: material
logo: assets/logo.png
icon:
repo: fontawesome/brands/github
features:
- content.code.copy
language: en
include_search_page: false
search_index_only: true
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: teal
toggle:
icon: material/weather-night
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: teal
toggle:
icon: material/weather-sunny
name: Switch to light mode
repo_url: https://github.com/tunjid/Tiler
nav:
- Home: index.md
- Tiled lists: implementation/tiledlist.md
- Tiling use cases and examples:
- Overview: usecases/overview.md
- Basic Example: usecases/basic-example.md
- Placeholders: usecases/placeholders.md
- Search: usecases/search.md
- Adaptive Paging: usecases/adaptive-paging.md
- Adaptive Paged Search with Placeholders: usecases/complex-tiling.md
- Transformations: usecases/transformations.md
- Jetpack Compose: usecases/compose.md
- How tiling works:
- Primitives: implementation/primitives.md
- Pivoting: implementation/pivoted-tiling.md
- Pagination types and Tiling: implementation/pagination-types.md
- Performance: implementation/performance.md
markdown_extensions:
- admonition
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences