diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 49efb72..cb954ae 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,6 +24,7 @@ jobs: any::ggplot2 any::tinytex any::hexbin + any::shinylive - name: Setup quarto uses: quarto-dev/quarto-actions/setup@v2 with: diff --git a/documents/icons/index.qmd b/documents/icons/index.qmd index 54c444e..7f6a4ac 100644 --- a/documents/icons/index.qmd +++ b/documents/icons/index.qmd @@ -8,8 +8,6 @@ format: title-block-banner: true toc: true number-sections: true - theme: pulse - highlight: kate code-tools: true fig-align: left diff --git a/documents/shinylive/index.qmd b/documents/shinylive/index.qmd index 0420bbb..366d874 100644 --- a/documents/shinylive/index.qmd +++ b/documents/shinylive/index.qmd @@ -16,7 +16,14 @@ filters: - shinylive --- -## Set up +## Setup + +The `shinylive` R package is required locally when building the document. + +```{r} +#| eval: false +install.packages("shinylive") +``` For quarto, add quarto filter `shinylive`. @@ -120,13 +127,6 @@ server <- function(input, output, session) { app <- shinyApp(ui = ui, server = server) ``` -To convert existing shiny apps into shinylive apps, install `shinylive` R package locally: - -```{r} -#| eval: false -remotes::install_github("posit-dev/r-shinylive") -``` - ## Acknowledgements -