-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathzensical.toml
More file actions
199 lines (176 loc) · 5.97 KB
/
zensical.toml
File metadata and controls
199 lines (176 loc) · 5.97 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
[project]
site_name = "panel-live"
site_description = "Run your Python code in the browser with panel-live"
site_author = "Marc SkovMadsen"
repo_url = "https://github.com/panel-extensions/panel-live"
repo_name = "panel-extensions/panel-live"
edit_uri = "edit/main/docs/"
nav = [
{"Home" = "index.md"},
{"Examples" = "examples.md"},
{"Tutorials" = [
{"Getting Started with HTML" = "tutorials/getting-started-html.md"},
{"Getting Started with MkDocs" = "tutorials/getting-started-mkdocs.md"},
{"Getting Started with Panel" = "tutorials/getting-started-panel.md"},
{"Getting Started with Quarto" = "tutorials/getting-started-quarto.md"},
{"Getting Started with Sphinx" = "tutorials/getting-started-sphinx.md"},
{"Getting Started with MCP" = "tutorials/getting-started-mcp.md"},
]},
{"How-to Guides" = [
{"HTML Attributes" = [
{"Display Modes" = "how-to/mode.md"},
{"Theming" = "how-to/theme.md"},
{"Layout Direction" = "how-to/layout.md"},
{"Code Editor Options" = "how-to/code-editor-options.md"},
{"Height" = "how-to/height.md"},
{"Auto-Run" = "how-to/auto-run.md"},
{"Pre-Rendering" = "how-to/pre-rendering.md"},
{"Preview Image" = "how-to/preview.md"},
{"Labels" = "how-to/label.md"},
{"External Source" = "how-to/src.md"},
{"Fullscreen" = "how-to/fullscreen.md"},
{"Examples Source" = "how-to/examples-src.md"},
]},
{"Child Elements" = [
{"Multi-File Apps" = "how-to/multi-file-apps.md"},
]},
{"JavaScript API" = [
{"Programmatic Usage" = "how-to/javascript-api.md"},
]},
{"Styling" = [
{"CSS Custom Properties" = "how-to/css-custom-properties.md"},
]},
{"Events" = [
{"Events" = "how-to/events.md"},
]},
{"Deployment" = [
{"Self-Hosting" = "how-to/self-hosting.md"},
{"Auth Proxy Setup" = "how-to/auth-proxy-setup.md"},
]},
{"Integration" = [
{"Claude Artifacts" = "how-to/claude-artifacts.md"},
{"Iframe Embedding" = "how-to/iframe-embedding.md"},
{"MkDocs Integration" = "how-to/mkdocs-integration.md"},
{"Sphinx Integration" = "how-to/sphinx-integration.md"},
{"Quarto Integration" = "how-to/quarto-integration.md"},
{"MCP Integration" = "how-to/mcp-integration.md"},
]},
{"Panel Component" = [
{"PanelLive Component" = "how-to/panel-component.md"},
{"HTML & Markdown Panes" = "how-to/panel-panes.md"},
]},
]},
{"Reference" = [
{"Python API" = "reference/python-api.md"},
{"HTML API" = "reference/html-api.md"},
{"JavaScript API" = "reference/javascript-api.md"},
{"CSS Custom Properties" = "reference/css-custom-properties.md"},
{"Events" = "reference/events.md"},
]},
{"Explanation" = [
{"Browser Compatibility" = "reference/browser-compatibility.md"},
{"Design Decisions" = "explanation/design.md"},
{"Known Limitations" = "reference/known-limitations.md"},
{"Pre-Rendering" = "explanation/pre-rendering.md"},
{"Security Model" = "explanation/security.md"},
{"PanelLive Component" = "explanation/panel-component.md"},
]},
{"Project" = [
{"Open Issues" = "project/open-issues.md"},
{"Closed Issues" = "project/closed-issues.md"},
{"Not Working" = [
"project/not-working/index.md",
{"DuckDB" = "project/not-working/duckdb.md"},
{"GeoViews" = "project/not-working/geoviews.md"},
{"Polars" = "project/not-working/polars.md"},
]},
]},
]
extra_javascript = ["assets/js/panel-live.js"]
extra_css = ["assets/css/panel-live.css"]
# Theme configuration
[project.theme]
custom_dir = "docs/overrides"
logo = "assets/logo.svg"
features = [
"content.action.edit",
"content.action.view",
"content.code.annotate",
"content.code.copy",
"content.tooltips",
"navigation.footer",
"navigation.indexes",
"navigation.instant",
"navigation.instant.prefetch",
"navigation.instant.progress",
"navigation.sections",
"navigation.top",
"navigation.tracking",
"search.highlight",
"search.share",
"search.suggest",
"toc.follow"
]
# Color palette - light mode
[[project.theme.palette]]
media = "(prefers-color-scheme: light)"
scheme = "default"
primary = "white"
accent = "blue"
[project.theme.palette.toggle]
icon = "material/brightness-7"
name = "Switch to dark mode"
# Color palette - dark mode
[[project.theme.palette]]
media = "(prefers-color-scheme: dark)"
scheme = "slate"
primary = "black"
accent = "blue"
[project.theme.palette.toggle]
icon = "material/brightness-4"
name = "Switch to light mode"
# Markdown extensions
[project.markdown_extensions.toc]
permalink = true
[project.markdown_extensions.pymdownx.highlight]
anchor_linenums = true
[project.markdown_extensions.pymdownx.tasklist]
custom_checkbox = true
[project.markdown_extensions.pymdownx.inlinehilite]
[project.markdown_extensions.pymdownx.snippets]
url_download = true
[project.markdown_extensions.attr_list]
[project.markdown_extensions.admonition]
[project.markdown_extensions.pymdownx.superfences]
custom_fences = [
{ name = "panel", class = "panel-live", validator = "panel_live.fences.validator", format = "panel_live.fences.prerender_formatter" }
]
# Plugins
[project.plugins]
search = {}
[project.plugins.mkdocstrings.handlers.python]
paths = ["src"]
[project.plugins.mkdocstrings.handlers.python.options]
docstring_style = "numpy"
show_if_no_docstring = true
filters = ["!^_"]
# Extra configuration
[project.extra]
[[project.extra.social]]
icon = "fontawesome/brands/github"
link = "https://github.com/panel-extensions"
[[project.extra.social]]
icon = "fontawesome/brands/twitter"
link = "https://twitter.com/panel_org"
[[project.extra.social]]
icon = "fontawesome/brands/python"
link = "https://pypi.org/project/panel-live"
[[project.extra.social]]
icon = "fontawesome/brands/discourse"
link = "https://discourse.holoviz.org/"
[[project.extra.social]]
icon = "fontawesome/brands/discord"
link = "https://discord.com/invite/rb6gPXbdAr"
[[project.extra.social]]
icon = "fontawesome/brands/linkedin"
link = "https://www.linkedin.com/company/panel-org"