-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmkdocs.yml
48 lines (46 loc) · 1.26 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
site_name: sqlitecollections
site_description: Python collections that are backended by sqlite3 DB and are compatible with the built-in collections
theme:
name: "material"
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
primary: "light blue"
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
primary: "indigo"
repo_name: osoken/sqlitecollections
repo_url: https://github.com/osoken/sqlitecollections
plugins:
- include-markdown
- search
- macros:
module_name: docs/main
markdown_extensions:
- pymdownx.highlight:
linenums: false
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
nav:
- Overview: index.md
- install.md
- Usage:
- common features: usage/common.md
- List: usage/list.md
- Dict: usage/dict.md
- dictview:
- usage/dictview/keysview.md
- usage/dictview/valuesview.md
- usage/dictview/itemsview.md
- Set: usage/set.md
- factory: usage/factory.md
- metadata: usage/metadata.md
- development.md
- benchmark.md