-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
108 lines (102 loc) · 2.38 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
site_name: "TorrentFile Docs"
site_url: "https://alexpdev.github.io/torrentfile"
repo_url: "https://github.com/alexpdev/torrentfile"
repo_name: "alexpdev/torrentfile"
site_description: "TorrentFile CLI Documentation and Examples"
copyright: "alexpdev 2021 - current"
extra_css: ["stylesheets/extra.css"]
docs_dir: "site"
site_dir: "docs"
theme:
name: material
logo: images/torrentfile.png
favicon: images/favicon.ico
features:
- header.autohide
- toc.integrate
- navigation-expand
- navigation-tabs
- navigation-instant
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: maroon
toggle:
icon: material/lightbulb
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
toggle:
icon: material/lightbulb
name: Switch to light mode
nav:
- Home : index.md
- Usage : usage.md
- Overview : overview.md
- Changelog : changelog.md
- License : Apache2.md
- API : api.md
- Coverage: coverage.md
- Source:
- Source/index.md
- Source/cli.md
- Source/commands.md
- Source/edit.md
- Source/hasher.md
- Source/interactive.md
- Source/mixins.md
- Source/rebuild.md
- Source/recheck.md
- Source/torrent.md
- Source/utils.md
- Source/version.md
markdown_extensions:
- pymdownx.tabbed
- pymdownx.superfences
- pymdownx.highlight:
linenums: true
- toc:
permalink: "#"
- pymdownx.details
- pymdownx.emoji
- pymdownx.magiclink
- pymdownx.caret
- attr_list
- def_list
- meta
- abbr
- codehilite
- smarty
- sane_lists
- pymdownx.inlinehilite
- admonition
- pymdownx.keys
- pymdownx.mark
- pymdownx.betterem:
smart_enable: all
- pymdownx.snippets:
check_paths: true
- pymdownx.tasklist
plugins:
- search
- coverage:
page_name: coverage
html_report_dir: docs/htmlcov
- section-index
- autorefs
- mkapi
- mkdocstrings:
handlers:
python:
options:
docstring_style: numpy
inherited_members: true
merge_init_into_class: yes
docstring_section_style: spacy
show_signature_annotations: true
show_source: true
heading_level: 2
seperate_signature: false
show_root_full_path: false
show_root_heading: true