-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
57 lines (54 loc) · 1.66 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
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
# General setup
site_name: Composables
site_url: https://tunjid.github.io/Composable/
site_author: Adetunji Dahunsi
site_description: A collection of utility composable functions
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/Composables
nav:
- Home: index.md
- Split Layouts: implementation/split_layouts.md
- Sticky Headers: implementation/sticky_headers.md
- Collapsing Headers: implementation/collapsing_headers.md
- Pointer Offset Scroll: implementation/pointer_offset.md
- Scrollbars: implementation/scrollbars.md
- Drag To Dismiss: implementation/drag_to_dismiss.md
- Alignment / Content Scale Interpolation: implementation/interpolation.md
- Miscellaneous Modifiers: implementation/misc_modifiers.md
markdown_extensions:
- admonition
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences