nevt
October 14, 2023, 8:23pm
3
You can build a shiny
app take input and generate the html
and pass in input.
By using iframe
tags you can also generate and view the html in Shiny app itself.
Below post could be useful
The following shiny app is intended pass user inputs from the app into a parameterized html quarto document that, when rendered, is downloaded via downloadHandler() and downloadButton(). This reproducible example works perfectly when deployed locally, but not when hosted on shinyapps.io . My understanding is that the quarto::quarto_render() call should have permission to write a file on shinyapps.io (it wouldn't be persistent from instance to instance, but that's fine). Does shinyapps.io not support quarto rendering? If not, does it support RMarkdown and would this code be expected to work with the appropriate conversions?
app.R:
library(shiny)
library(quarto)
ui <- fluidPage(
titlePa…
1 Like