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
|
# SPDX-FileCopyrightText: Peter Pentchev <roam@ringlet.net>
# SPDX-License-Identifier: GPL-2.0-or-later
theme:
name: material
features:
- navigation.instant
- navigation.tracking
- toc.integrate
- toc.follow
- content.code.copy
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/weather-night
name: Switch to light mode
site_name: tina
repo_url: https://gitlab.com/tina-mgr/tina-mgr
repo_name: tina-mgr
site_author: ppentchev
site_url: https://devel.ringlet.net/misc/tina/
site_dir: site/docs
nav:
- 'index.md'
- 'Download': 'download.md'
- 'Changelog': 'changes.md'
- 'Python API reference':
- 'Contents': 'api/python/index.md'
- 'Common definitions': 'api/python/common.md'
- 'The in-memory representation of the Tina database': 'api/python/db.md'
- 'Parsing the native Tina database': 'api/python/parse.md'
- 'Conversion: format handlers': 'api/python/convert-formats.md'
- 'Conversion: errors': 'api/python/convert-errors.md'
markdown_extensions:
- toc:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite:
- pymdownx.superfences:
plugins:
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [python/src]
options:
heading_level: 2
show_root_heading: true
- search
watch:
- 'python/src/tina_mgr'
|