Reputation: 63984
I have a HTML doc created with RStudio's RMarkdown. Is there a way I can serve that page in Shiny server without going through attaching it into ui.R or server.R?
If so, how can I go about it?
Upvotes: 1
Views: 552
Reputation: 368191
See the documentation for dynamic / interactive Markdown documents.
I had long converted all my apps from using ui.R
and server.R
to using a single app.R
; I now convert them to being index.Rmd
as having flexdashboard with shiny is the best thing yet.
Upvotes: 2