-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
90 lines (89 loc) · 2.25 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
---
# Copyright (C) 2023 Maxwell G <[email protected]>
# SPDX-License-Identifier: GPL-2.0-or-later
site_name: fedrq
repo_url: "https://git.sr.ht/~gotmax23/fedrq/tree/main"
edit_uri: "item/doc"
repo_name: "sr.ht/~gotmax23/fedrq"
docs_dir: doc
theme:
name: material
font: false
icon:
repo: "fontawesome/regular/circle"
edit: "material/eye"
features:
- content.code.copy
- content.action.edit
palette:
- media: "(prefers-color-scheme: light)"
primary: pink
accent: pink
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: pink
accent: pink
toggle:
icon: material/brightness-4
name: Switch to light mode
markdown_extensions:
- admonition
- smarty
- toc:
permalink: true
- tables
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.magiclink
- pymdownx.superfences
plugins:
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_style: google
show_if_no_docstring: true
merge_init_into_class: true
filters: ["!^__?", "!LOG", "!logger"]
show_signature_annotations: true
separate_signature: true
paths:
- src/
import:
- https://docs.python.org/3/objects.inv
- https://dnf.readthedocs.io/en/latest/objects.inv
- https://dnf5.readthedocs.io/en/latest/objects.inv
- gen-files:
scripts:
- doc/mkdocs_mangen.py
- exclude:
glob:
- "*.tar.gz"
- "fedrq.1*"
- "fedrq.5*"
- "*.py"
- "requirements.*"
watch:
- "README.md"
- "NEWS.md"
- "src/fedrq"
nav:
- Home: index.md
- News.md
- man fedrq: fedrq1.md
- man 5 fedrq: fedrq5.md
- dnf repoquery comparison: dnf-repoquery-diff.md
- API:
- API/Summary.md
- "fedrq.config": API/config.md
# Undocumented
# - "fedrq.release_repo": API/release_repo.md
- "fedrq.backends":
- "fedrq.backends.base": API/backends/base.md
- "fedrq.backends.dnf.backend": API/backends/dnf.md
- "fedrq.backends.libdnf5.backend": API/backends/libdnf5.md