-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmkdocs.yml
88 lines (83 loc) · 2.37 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
site_name: pydisplay
repo_url: https://github.com/PyDevices/pydisplay/
copyright: "Copyright 2024, Brad Barnett"
docs_dir: docs
site_dir: site
theme:
# name: "material"
name: "readthedocs"
palette:
scheme: slate
primary: indigo
accent: amber
plugins:
- search
- gen-files:
scripts:
- tools/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
- mkdocstrings:
handlers:
python:
options:
show_source: false
show_bases: false
inherited_members: true
paths: [src]
docstring_style: google
docstring_section_style: table
separate_signature: true
show_category_heading: true
# heading_level: 1
# - mkdocs-pyscript:
# pyscript_version: "unstable"
nav:
# rest of the navigation...
- About the project:
- Background: index.md
- Getting Started: getting-started.md
- Live Demos: test2.md
- Getting Help: getting-help.md
- Contributing: contributing.md
- Modules:
- displaysys:
- busdisplay: test-page#src.lib.displaysys.busdisplay
- fbdisplay: test-page#src.lib.displaysys.fbdisplay
- jndisplay: test-page#src.lib.displaysys.jndisplay
- pgdisplay: test-page#src.lib.displaysys.pgdisplay
- psdisplay: test-page#src.lib.displaysys.psdisplay
- sdldisplay: test-page#src.lib.displaysys.sdldisplay
- eventsys: test-page#src.lib.eventsys
- graphics: test-page#src.lib.graphics
- multimer: test-page#src.lib.multimer
- palettes: test-page#src.lib.palettes
- Platforms:
- Micropython:
- Embedded: micropython#embedded
- Unix: micropython#unix
- PyScript: micropython#pyscript
- CPython:
- Desktop: cpython#desktop
- Single Board Computer: cpython#sbc
- Jupyter Notebook: cpython#jupyter
- PyScript: cpython#pyscript
- CircuitPython:
- Embedded: circuitpython#embedded
- Blinka: circuitpython#blinka
- USB_Video: circuitpython#usb_video
- DVI (HDMI): circuitpython#dvi
- More - RGBMatrix, IS31FL3741, etc.: circuitpython#more
- GUIs:
- LVGL: lvgl.md
- MicroPython-Touch: micropython-touch.md
- TFT_GUI: tft_gui.md
- PyWidgets: pywidgets.md
# defer to gen-files + literate-nav
- Package Reference: reference/
# rest of the navigation...
markdown_extensions:
- toc:
permalink: true
separator: "_"