-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathmkdocs.yml
102 lines (80 loc) · 2.07 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
site_name: PyTermGUI::docs
theme:
name: material
font:
text: Open Sans
icon:
logo: octicons/terminal-16
features:
- navigation.tabs
- content.code.annotate
palette:
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep-purple
accent: lime
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep-purple
accent: green
toggle:
icon: material/lightbulb
name: Switch to light mode
extra_css:
- stylesheets/extra.css
plugins:
- search
- gen-files:
scripts:
- docs/gen_ref_nav.py
- docs/gen_docstring_svgs.py
- literate-nav:
nav_file: SUMMARY.md
- mkdocstrings:
handlers:
python:
paths: [pytermgui]
options:
docstring_style: google
- termage:
# MkDocs Material's theme colors
background: "#21222C"
foreground: "#D5D7E2"
repo_url: https://github.com/bczsalba/pytermgui
repo_name: bczsalba/pytermgui
markdown_extensions:
- attr_list
- md_in_html
- admonition
- pymdownx.keys
- pymdownx.details
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences
nav:
- PyTermGUI:
- Welcome: index.md
- TIM:
- Introduction: tim/index.md
- Tags: tim/tags.md
- Usage in PTG: tim/usage.md
- Widgets:
- 'Palettes & styling': widgets/styling.md
- The batteries included: widgets/builtins.md
- Attributes to know about: widgets/attrs.md
- Create your own: widgets/custom.md
- Inspection: inspect.md
- 'SVG & HTML exports': exports.md
- Walkthroughs:
- walkthroughs/index.md
# - Building a TUI application:
# - Planning: walkthroughs/tui/planning.md
# - Functional prototype: walkthroughs/tui/prototype.md
# - Styled product: walkthroughs/tui/product.md
- Building an inline-widget context: walkthroughs/inline.md
- Reference: reference/
- Future: future.md