75 lines
1.8 KiB
YAML
75 lines
1.8 KiB
YAML
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
|