You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to include some additional markdown text in a basic shiny live website. However, adding a bit of text using shiny::includeMarkdown() results in a blank white page in both Safari and Chrome. Inspecting the HTML shows an empty page:
It looks like the shiny::includeMarkdown() function is re-exporting htmltools::includeMarkdown(), which itself is calling out to markdown::mark(). Since markdown is listed only as a "Suggests" dependency of htmltools, it is not being downloaded by webR as your app starts up.
Please can you try manually installing the markdown package near the start of your app.R source, and then re-exporting?
I'm trying to include some additional markdown text in a basic shiny live website. However, adding a bit of text using shiny::includeMarkdown() results in a blank white page in both Safari and Chrome. Inspecting the HTML shows an empty page:
See minimal example here: https://github.com/rbcavanaugh/shinylive-issue, where shinylive-start.R holds these two lines to run the app.
The Old Faithful app works fine per the example code (comment out the
includeMarkdown()
on app.R line 21.Thanks!
The text was updated successfully, but these errors were encountered: