-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy path_quarto.yml
301 lines (289 loc) · 10.8 KB
/
_quarto.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
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
project:
type: website
preview:
port: 1414
output-dir: _build
render:
# List index.qmd first so that / redirects to it instead of components.html.
- /index.qmd
- /*.qmd
- components
- inputs
- outputs
- display-messages
- layouts
- docs
- development
- gallery
- api/express
- api/core
- api/testing
- templates
resources:
- /pypi/**
- /robots.txt
- /_redirects
- objects.json
- "*.png"
- "*.gif"
- "*.jpg"
- "*.svg"
- /components/static/**
post-render:
- scripts/post-render.py
metadata-files:
- api/express/_sidebar.yml
- api/core/_sidebar.yml
filters:
- shinylive
- interlinks
interlinks:
fast: true
sources:
python:
url: https://docs.python.org/3/
website:
title: "Shiny for Python"
page-navigation: true
favicon: "favicon.png"
open-graph:
site-name: Shiny for Python
locale: es_ES
image: https://shiny.posit.co/py/images/shiny-for-python.jpg
description: Build interactive web applications easily with the power of Python’s data and scientific stack.
twitter-card:
title: "Shiny for Python"
description: "Build interactive web applications easily with the power of Python’s data and scientific stack."
image: https://shiny.posit.co/py/images/shiny-for-python.jpg
image-width: 1200
image-height: 630
card-style: "summary_large_image"
repo-url: https://github.com/posit-dev/py-shiny-site
repo-actions: [issue, edit]
navbar:
background: primary
foreground: light
logo: shiny-for-python.svg
logo-alt: The logo for Shiny for Python
search: true
left:
- text: "Learn Shiny"
file: docs/overview.qmd
- text: "Components"
menu:
- text: "Components"
file: components/index.qmd
icon: sliders
- text: "Layouts"
file: layouts/index.qmd
icon: layout-text-window-reverse
- text: "Templates"
file: templates/index.qmd
icon: code-square
- text: "Deploy"
menu:
- text: "Overview"
href: docs/deploy.qmd
- docs/deploy-cloud.qmd
- docs/deploy-on-prem.qmd
- docs/shinylive.qmd
- text: "Gallery"
file: gallery/index.qmd
- text: "Playground"
href: https://shinylive.io/py/examples/
target: _blank
- text: "Reference"
menu:
- text: "Shiny Express"
href: api/express/index.qmd
- text: "Shiny Core"
href: api/core/index.qmd
- text: "Testing"
href: api/testing/index.qmd
tools:
- icon: discord
href: https://discord.gg/yMGCamUMnS
aria-label: Shiny Discord
- icon: github
href: https://github.com/posit-dev/py-shiny/
aria-label: Shiny for Python Github
page-footer:
left: 'Proudly supported by <a href="https://www.posit.co/" class="no-icon"><img src="/images/posit-logo-black.svg" alt="Posit" width="80" style="padding-left: 3px;vertical-align:text-top;"></a>'
right:
- icon: discord
href: https://discord.gg/yMGCamUMnS
aria-label: Shiny Discord
- icon: github
href: https://github.com/posit-dev/py-shiny/
aria-label: Shiny for Python Github
- icon: twitter
href: https://twitter.com/posit_pbc
aria-label: Posit Twitter
- icon: youtube
href: https://www.youtube.com/playlist?list=PL9HYL-VRX0oRbLoj3FyL5zeASU5FMDgVe
aria-label: Shiny YouTube Playlist
sidebar:
- id: components
collapse-level: 2
contents:
- text: "![](/images/blank-pixel.png){.sidebar-title}__COMPONENTS__"
href: components/
- section: "![](/images/sliders.svg){.sidebar-icon .sidebar-subtitle}__Inputs__"
contents:
- components/inputs/action-button/index.qmd
- components/inputs/action-link/index.qmd
- components/inputs/checkbox/index.qmd
- components/inputs/checkbox-group/index.qmd
- components/inputs/date-range-selector/index.qmd
- components/inputs/date-selector/index.qmd
- components/inputs/numeric-input/index.qmd
- components/inputs/password-field/index.qmd
- components/inputs/radio-buttons/index.qmd
- components/inputs/select-single/index.qmd
- components/inputs/select-multiple/index.qmd
- components/inputs/selectize-single/index.qmd
- components/inputs/selectize-multiple/index.qmd
- components/inputs/slider/index.qmd
- components/inputs/slider-range/index.qmd
- components/inputs/switch/index.qmd
- components/inputs/text-area/index.qmd
- components/inputs/text-box/index.qmd
- section: "![](/images/bar-chart-line-fill.svg){.sidebar-icon .sidebar-subtitle}__Outputs__"
contents:
- components/outputs/data-grid/index.qmd
- components/outputs/data-table/index.qmd
- components/outputs/image/index.qmd
- components/outputs/map-ipyleaflet/index.qmd
- components/outputs/plot-matplotlib/index.qmd
- components/outputs/plot-plotly/index.qmd
- components/outputs/plot-seaborn/index.qmd
- components/outputs/text/index.qmd
- components/outputs/ui/index.qmd
- components/outputs/value-box/index.qmd
- components/outputs/verbatim-text/index.qmd
- section: "![](/images/chat-dots-fill.svg){.sidebar-icon .sidebar-subtitle}__Display Messages__"
contents:
- components/display-messages/modal/index.qmd
- components/display-messages/notifications/index.qmd
- components/display-messages/progress-bar/index.qmd
- components/display-messages/tooltips/index.qmd
- id: layouts
collapse-level: 2
contents:
- text: "![](/images/blank-pixel.png){.sidebar-title}__LAYOUTS__"
href: "layouts/index.qmd"
- section: "![](/images/navbars-blue.svg){.sidebar-icon .sidebar-subtitle}__Navbars__"
contents:
- text: "Navbar at Top"
href: "/layouts/navbars/index.html#navbar-at-top"
- text: "Navbar at Bottom"
href: "/layouts/navbars/index.html#navbar-at-bottom"
- section: "![](/images/sidebars-blue.svg){.sidebar-icon .sidebar-subtitle}__Sidebars__"
contents:
- text: "Sidebar on Left"
href: "/layouts/sidebars/index.html#sidebar-on-the-left"
- text: "Sidebar on Right"
href: "/layouts/sidebars/index.html#sidebar-on-the-right"
- text: "Sidebar Within a Card"
href: "/layouts/sidebars/index.html#sidebar-within-a-card"
- text: "Collapsed Sidebar"
href: "/layouts/sidebars/index.html#collapsed-sidebar"
- section: "![](/images/tabs-blue.svg){.sidebar-icon .sidebar-subtitle}__Tabs__"
contents:
- text: "Tabset with Pill Navigation"
href: "/layouts/tabs/index.html#tabset-with-pill-navigation"
- text: "Tabset with Pill List Navigation"
href: "/layouts/tabs/index.html#tabset-with-pill-list-navigation"
- text: "Tabset with Tab Navigation"
href: "/layouts/tabs/index.html#tabset-with-tab-navigation"
- text: "Card with a Tabbed Tabset"
href: "/layouts/tabs/index.html#card-with-a-tabbed-tabset"
- text: "Card with a Pill Tabset"
href: "/layouts/tabs/index.html#card-with-a-pill-tabset"
- text: "Vertically Collapsing Accordions"
href: "/layouts/tabs/index.html#vertically-collapsing-accordion-panels"
- section: "![](/images/cards-blue.svg){.sidebar-icon .sidebar-subtitle}__Panels & Cards__"
contents:
- text: "Floating Panel"
href: "/layouts/panels-cards/index.html#floating-panel"
- text: "Content Divided by Cards"
href: "/layouts/panels-cards/index.html#content-divided-by-cards"
- section: "![](/images/arrange-blue.svg){.sidebar-icon .sidebar-subtitle}__Arrange Elements__"
contents:
- text: "Grid Layouts"
href: "/layouts/arrange/index.html#grid-layouts"
- text: "Column Nesting"
href: "/layouts/arrange/index.html#column-nesting"
- text: "Controlling for Page Size"
href: "/layouts/arrange/index.html#controlling-for-page-width-and-height"
- id: docs
style: "floating"
collapse-level: 2
align: left
contents:
- section: "Essentials"
contents:
- docs/overview.qmd
- docs/user-interfaces.qmd
- section: "Workflow"
contents:
- docs/install-create-run.qmd
- docs/debug.qmd
- section: "User interfaces"
contents:
- docs/ui-overview.qmd
- docs/jupyter-widgets.qmd
- docs/ui-dynamic.qmd
- docs/ui-html.qmd
- docs/ui-customize.qmd
- section: "Reactivity"
contents:
- docs/reactive-foundations.qmd
- docs/reactive-patterns.qmd
- docs/reactive-mutable.qmd
- section: "Syntax modes"
contents:
- docs/express-vs-core.qmd
- docs/express-or-core.qmd
- docs/express-in-depth.qmd
- docs/express-to-core.qmd
- section: "Modules"
contents:
- docs/modules.qmd
- docs/module-communication.qmd
- section: "Testing"
contents:
- docs/unit-testing.qmd
- docs/end-to-end-testing.qmd
- section: "Extending"
contents:
- docs/custom-component-one-off.qmd
- docs/custom-components-pkg.qmd
- section: "Framework Comparisons"
contents:
- docs/comp-streamlit.qmd
- docs/comp-r-shiny.qmd
- section: "Miscellaneous"
contents:
- docs/nonblocking.qmd
- docs/routing.qmd
# TODO: if the sidebar only has 1 entry, then it displays for the entire site...
# added entry below to prevent this.
- id: deploy
format:
html:
# it appears that these are applied to all rendered pages, and _metadata.yml
# in a subdirectory would e.g. add an additional css file (not override the one here)
# see _metadata.yml for options meant to be overridden in subdirectories.
toc: true
theme: quarto-style.scss
include-before-body: include-before-body.html
include-in-header: include-in-header.html
code-copy: true
link-external-newwindow: true
grid:
sidebar-width: 300px
gutter-width: 2.5rem
editor:
markdown:
wrap: sentence