We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The runtime: shiny vs runtime: shinyrmd distinction is really subtle for someone writing interactive documents.
runtime: shiny
runtime: shinyrmd
There are examples where a server.R and ui.Rmd but use runtime: shiny rather than runtime: shinyrmd.
server.R
ui.Rmd
We could add context to rmarkdown::run to understand if the wrong runtime has been specified and guide the user.
rmarkdown::run
Especially:
server: shiny
Adding this note to log and remember this possible improvement.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
runtime: shiny
vsruntime: shinyrmd
distinction is really subtle for someone writing interactive documents.There are examples where a
server.R
andui.Rmd
but useruntime: shiny
rather thanruntime: shinyrmd
.We could add context to
rmarkdown::run
to understand if the wrong runtime has been specified and guide the user.Especially:
server.R
+ui.Rmd
should always meanruntime: shinyrmd
server: shiny
should be used now (instead ofruntime: shinyrmd
Adding this note to log and remember this possible improvement.
The text was updated successfully, but these errors were encountered: