Skip to content

Commit 2a44a6d

Browse files
authored
chore(URLs): fix link changes from #291 (#292)
* fix link changes from #291 * fix link in template * links in overview * try using an absolute path for the include file testing to see if this will fix the last warning in #292 --------- Co-authored-by: Daniel Chen <[email protected]>
1 parent 2217440 commit 2a44a6d

File tree

8 files changed

+12
-13
lines changed

8 files changed

+12
-13
lines changed

docs/comp-r-shiny.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Shiny [express](express-vs-core.qmd) is a new, more expressive, way to build PyS
2424
# Getting started
2525

2626
R users tend to use the R console to install and run Shiny while Python requires you to use the terminal.
27-
To get started you can do the following (or see the [installation instructions](install-create-run.qmd) for a more in-depth explanation):
27+
To get started you can do the following (or see the [installation instructions](/get-started/install.qmd) for a more in-depth explanation):
2828

2929
1. In your terminal, create a new directory with `mkdir <my_directory>` and navigate into it with `cd <my_directory>`
3030
2. Install Shiny. We strongly recommend using a virtual environment for this as it will eliminate dependency resolution headaches and make deployment easier.

docs/jupyter-widgets.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -535,9 +535,9 @@ For more layout inspiration, check out the [Layout Gallery](/layouts).
535535

536536
## Shinylive
537537

538-
Examples on this page are powered by [shinylive](shinylive.qmd), a tool for running Shiny apps in the browser (via [pyodide](https://pyodide.org/en/stable/)).
538+
Examples on this page are powered by [shinylive](/get-started/shinylive.qmd), a tool for running Shiny apps in the browser (via [pyodide](https://pyodide.org/en/stable/)).
539539
Generally speaking, apps that use shinywidgets should work in shinylive as long as the widget and app code is supported by pyodide.
540-
The shinywidgets package itself comes pre-installed in shinylive, but you'll need to include any other dependencies [in the `requirements.txt` file](shinylive.qmd#requiring-extra-packages-with-requirements.txt).
540+
The shinywidgets package itself comes pre-installed in shinylive, but you'll need to include any other dependencies [in the `requirements.txt` file](/get-started/shinylive.qmd#requiring-extra-packages-with-requirements.txt).
541541

542542

543543
## Examples

docs/overview.qmd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ In the [next article](user-interfaces.qmd), we'll cover more user interface (UI)
2020
::: {.callout-tip}
2121
## Editable examples
2222

23-
Many examples on this site have a code editor for modifying the source code for a Shiny app (which runs entirely in the browser, thanks to [shinylive](shinylive.qmd)).
24-
If you'd like to run any examples locally, first [install and run](install-create-run.qmd) Shiny locally, then copy/paste relevant code into the `app.py` file (created by `shiny create`).
23+
Many examples on this site have a code editor for modifying the source code for a Shiny app (which runs entirely in the browser, thanks to [shinylive](/get-started/shinylive.qmd)).
24+
If you'd like to run any examples locally, first [install](/get-started/install.qmd) Shiny locally, then [create and run](/get-started/create-run.qmd) by copy/paste relevant code into the `app.py` file (created by `shiny create`).
2525
:::
2626

2727

@@ -520,7 +520,7 @@ For a more in-depth look at reactivity, check out the [reactivity article](react
520520

521521
### Starter templates {#templates}
522522

523-
Once you've [installed](install-create-run.qmd) Shiny, the `shiny create` CLI command provides access to a collection of useful starter templates. This command walks you through a series of prompts to help you get started quickly with a helpful example. One great option is the dashboard template, which can be created with:
523+
Once you've [installed](/get-started/install.qmd) Shiny, the `shiny create` CLI command provides access to a collection of useful starter templates. This command walks you through a series of prompts to help you get started quickly with a helpful example. One great option is the dashboard template, which can be created with:
524524

525525
```bash
526526
shiny create --template dashboard
@@ -531,7 +531,7 @@ shiny create --template dashboard
531531
::: {.callout-tip}
532532
## Development workflow
533533

534-
See the [workflow](install-create-run.qmd) section for more information developing Shiny apps locally.
534+
See how to [create and run apps](/get-started/create-run.qmd) for more information developing Shiny apps locally.
535535
Also keep in mind you can develop apps in the browser using the [playground](https://shinylive.io/py/examples/).
536536
:::
537537

docs/routing.qmd

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,4 @@ routes = [
3636
app = Starlette(routes=routes)
3737
```
3838

39-
This application can be run using tools like `uvicorn`, as discussed in [deployment](deploy-on-prem.qmd).
40-
39+
This application can be run using tools like `uvicorn`, as discussed in [deployment](/get-started/deploy-on-prem.qmd).

docs/user-interfaces.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ ridgeplot==0.1.25
395395

396396
## Next steps
397397

398-
If you'd like to start developing Shiny apps locally, see the next section on [workflow](install-create-run.qmd).
398+
If you'd like to start developing Shiny apps locally, see the get started section on [creating and running apps](/get-started/create-run.qmd).
399399

400400
Otherwise, to keep learning more about some of the topics covered here, see the following:
401401

get-started/create-run.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Create and Run"
33
---
44

5-
When you [install shiny](get-started/install.qmd), you also install the `shiny` command line interface (CLI).
5+
When you [install shiny](install.qmd), you also install the `shiny` command line interface (CLI).
66
You can use this interface to help you create and run your Shiny applications.
77

88
## Create a Shiny application

get-started/include/why-virtual-env.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ When building Shiny applications, especially in a production environment, it is
33
Why use a virtual environment?
44

55
- Keeps your application's dependencies isolated from other global Python packages.
6-
- Makes your application easier to [deploy and share](deploy.qmd).
6+
- Makes your application easier to [deploy and share](/get-started/deploy.qmd).
77
- Helps avoid version conflicts between different projects.

templates/stock-app/index.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Note that the icon for the stock price change is a green arrow pointing up if th
3232
**Components:**
3333

3434
* [Select input](/components/inputs/selectize-single/index.qmd)
35-
* [Date range input](/components/inputs/date-range/index.qmd)
35+
* [Date range input](/components/inputs/date-range-selector/index.qmd)
3636
* [Value box](/components/outputs/value-box/index.qmd)
3737
* [Plotly](/components/outputs/plot-plotly/index.qmd)
3838
* [Data grid output](/components/outputs/data-grid/index.qmd)

0 commit comments

Comments
 (0)