58 lines
1.3 KiB
YAML
58 lines
1.3 KiB
YAML
site_name: Transactional databases and core applications
|
|
site_author: Guillem Borrell PhD
|
|
site_url: https://git.guillemborrell.es/guillem/PyConES24
|
|
copyright: © Guillem Borrell Nogueras
|
|
repo_url: https://git.guillemborrell.es/guillem/PyConES24
|
|
edit_uri: edit/main/docs/
|
|
|
|
nav:
|
|
- "Introduction": "index.md"
|
|
theme:
|
|
name: "material"
|
|
palette:
|
|
# Palette toggle for light mode
|
|
- media: "(prefers-color-scheme)"
|
|
primary: teal
|
|
toggle:
|
|
icon: material/brightness-auto
|
|
name: Switch to light mode
|
|
|
|
- media: "(prefers-color-scheme: light)"
|
|
scheme: default
|
|
primary: teal
|
|
toggle:
|
|
icon: material/brightness-7
|
|
name: Switch to dark mode
|
|
|
|
# Palette toggle for dark mode
|
|
- media: "(prefers-color-scheme: dark)"
|
|
scheme: slate
|
|
primary: teal
|
|
toggle:
|
|
icon: material/brightness-4
|
|
name: Switch to light mode
|
|
|
|
features:
|
|
- content.action.edit
|
|
- content.code.copy
|
|
icon:
|
|
edit: material/pencil
|
|
view: material/eye
|
|
|
|
plugins:
|
|
- search
|
|
|
|
markdown_extensions:
|
|
- md_in_html
|
|
- admonition
|
|
- tables
|
|
- pymdownx.highlight:
|
|
anchor_linenums: true
|
|
line_spans: __span
|
|
pygments_lang_class: true
|
|
- pymdownx.inlinehilite
|
|
- pymdownx.snippets
|
|
- pymdownx.superfences
|
|
- markdown_include.include:
|
|
base_path: docs
|