-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
74 lines (70 loc) · 1.78 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
site_name: "Documentation"
site_url: https://MrBounty.github.io/ZipponDB/
repo_url: https://github.com/MrBounty/ZipponDB
theme:
name: material
logo: images/banner.png
features:
- search.suggest
- navigation.tabs # Makes navigation collapsible, but keeps sections open
- navigation.sections # Enable collapsible sections within the sidebar
- navigation.expand
- navigation.top
- content.code.annotate
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: amber
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: amber
toggle:
icon: material/brightness-4
name: Switch to light mode
markdown_extensions:
- attr_list
- md_in_html
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
use_pygments: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
plugins:
- glightbox
- search
extra_css:
- stylesheets/extra.css
nav:
- Home: index.md
- Quickstart: Quickstart.md
- Learn:
- Schema: Schema.md
- ZipponQL:
- Intro: ziql/intro.md
- Vs SQL: ziql/vssql.md
- GRAB: ziql/grab.md
- ADD: ziql/add.md
- UPDATE: ziql/update.md
- DELETE: ziql/delete.md
- Data types: Data type.md
- Command Line Interface: cli.md
- Logs: logs.md
- Interface: interface.md
- Technical:
- Benchmark: Benchmark.md
- Technical: Technical docs.md
- Build: build.md
- ZipponData: ZipponData.md
- Single file: Single_file.md
- About: about.md
- Roadmap: Roadmap.md
- Release: release.md