-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmkdocs.yml
102 lines (94 loc) · 2.29 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
site_name: LinuxPy
site_url: https://tiagocoutinho.github.io/linuxpy
site_description: Human friendly interface to linux subsystems using python.
site_author: Tiago Coutinho
copyright: "© 2023 Tiago Coutinho"
repo_url: https://github.com/tiagocoutinho/linuxpy
repo_name: tiagocoutinho/linuxpy
# disable editing code link
edit_uri: ''
plugins:
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_style: google
docstring_section_style: spacy
members_order: source
merge_init_into_class: true
separate_signature: false
show_source: false
show_bases: true
show_inheritance_diagram: false
show_root_heading: true
show_signature_annotations: true
show_submodules: true
show_symbol_type_heading: true
show_symbol_type_toc: true
signature_crossrefs: true
unwrap_annotated: true
- search
- coverage:
page_path: coverage # default
html_report_dir: htmlcov # default
theme:
name: material
language: en
palette:
primary: blue grey
accent: light blue
font:
text: Roboto
code: 'Roboto Mono'
logo: img/logo-128x128.png
favicon: img/favicon.ico
features:
- search.suggest
- search.highlight
- content.tabs.link
- navigation.indexes
- content.tooltips
- navigation.path
- content.code.annotate
- content.code.copy
- content.code.select
- navigation.tabs
extra_css:
- css/termynal.css
extra_javascript:
- js/termynal.js
markdown_extensions:
meta: null
admonition: null
codehilite: null
toc:
permalink: true
pymdownx.details: null
pymdownx.inlinehilite: null
pymdownx.superfences: null
pymdownx.tabbed:
alternate_style: true
nav:
- Linuxpy: index.md
- User guide:
- user_guide/index.md
- user_guide/gpio.md
- user_guide/input.md
- user_guide/led.md
- user_guide/midi.md
- user_guide/thermal.md
- user_guide/video.md
- API Reference:
- api/index.md
- api/gpio.md
- api/input.md
- api/led.md
- api/midi.md
- api/thermal.md
- api/video.md
- Internal:
- api/device.md
- api/util.md
- Developers corner: develop.md
- Coverage report: coverage.md