mirror of
https://blitiri.com.ar/repos/chasquid
synced 2025-12-17 14:37:02 +00:00
The processing of aliases wasn't properly documented in an user-visible way, so this patch adds a new section for it.
34 lines
610 B
YAML
34 lines
610 B
YAML
# mkdocs configuration
|
|
#
|
|
# To test changes locally, run:
|
|
# mkdocs serve -f .mkdocs.yml
|
|
|
|
site_name: chasquid documentation
|
|
|
|
# Point the repo to github to make it easier for users to do edits, even if
|
|
# it's not the canonical location.
|
|
repo_url: https://github.com/albertito/chasquid
|
|
|
|
markdown_extensions:
|
|
- codehilite:
|
|
guess_lang: false
|
|
- attr_list
|
|
|
|
theme: readthedocs
|
|
|
|
nav:
|
|
- Home: index.md
|
|
- How-to: howto.md
|
|
- Install: install.md
|
|
- Manpages: man/index.md
|
|
- All:
|
|
- aliases.md
|
|
- hooks.md
|
|
- dovecot.md
|
|
- dkim.md
|
|
- docker.md
|
|
- flow.md
|
|
- monitoring.md
|
|
- sec-levels.md
|
|
|