Skip to content

Commit ec5d46f

Browse files
committed
what is shiny copy edit and links
1 parent 7d33302 commit ec5d46f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

get-started/what-is-shiny.qmd

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ No need to learn JavaScript or front-end frameworks.
4747
Shiny for Python comes fully equipped with everything you need to build a dashboard right out of the box, including a rich set of [input](/components/#inputs) and [output](/components/#outputs) components.
4848
There is an entire [components gallery](/components/) to help you quickly build interactive applications.
4949

50-
[Layout](/layouts/) options let you organize your UI efficiently, while [built-in theming](/docs/ui-customize.qmd) (including [dark mode](/components/inputs/dark-mode)) ensures your app looks great with minimal effort.
50+
[Layout options](/layouts/) let you organize your UI efficiently, while [built-in theming](/docs/ui-customize.qmd) (including [dark mode](/components/inputs/dark-mode)) ensures your app looks great with minimal effort.
5151

5252
Already have a brand guideline?
5353
You can use [brand.yml](https://posit-dev.github.io/brand-yml/) to apply consistent branding, colors, and logos across your application.
@@ -136,7 +136,7 @@ Here's a full Shiny application in action, complete with [reactivity](/docs/reac
136136
Hit the ground running with one of our [starter templates](/templates/), like the app above, by using `shiny create`.
137137

138138
There are templates for common use cases.
139-
For example, [data dashboards](templates/dashboard/), [applications](/templates/database-explorer/), [streaming](/templates/monitor-database/) updates, or [data entry](/templates/survey/).
139+
For example, [data dashboards](templates/dashboard/), [data applications](/templates/database-explorer/), [streaming updates](/templates/monitor-database/), or [data entry](/templates/survey/).
140140

141141
Use the terminal command below to [create and run](create-run.qmd) the same dashboard locally with `shiny create`, starting from a [template](/templates/).
142142

@@ -148,8 +148,8 @@ shiny create --template dashboard
148148
## Extensibility {#extensible}
149149

150150
While Shiny includes everything you need to build an app, is built on a foundation of web standards, making it highly [extensible](/docs/custom-component-one-off.qmd).
151-
152-
The Python inputs return regular HTML:
151+
In fact, Shiny for Python is built on standard HTML
152+
Here's an example of how the Shiny action button input returns a HTML `<button>`.
153153

154154
```python
155155
>>> from shiny import ui
@@ -161,7 +161,7 @@ The Python inputs return regular HTML:
161161
```
162162

163163
If you're versed in web programming, you can use Shiny to build [one-off custom components](/docs/custom-component-one-off.qmd) that integrate your favorite JavaScript framework directly from Python.
164-
For more advanced needs, you can develop a [reusable component package](/docs/custom-components-pkg.qmd) or customize the [user interface](/docs/ui-customize) by incrementally adding [JavaScript](/docs/custom-component-one-off), [HTML](/docs/ui-html.html), or even [WebAssembly](/get-started/shinylive.qmd), without needing to learn complex build tools or frameworks.
164+
For more advanced needs, you can develop a [reusable component package](/docs/custom-components-pkg.qmd) or [customize the user interface](/docs/ui-customize) by incrementally [adding JavaScript](/docs/custom-component-one-off), [HTML](/docs/ui-html.html), or even [WebAssembly](/get-started/shinylive.qmd), without needing to learn complex build tools or frameworks.
165165

166166

167167
## Install, create, and run

0 commit comments

Comments
 (0)