I wrote some help documents in Markdown for my Shiny app, and use shiny::includeMarkdown
to show them.
I think I used to be able to click and open a link, but now it doesn't do anything. I can use right click to "open in browser" though.
Is this behavior expected because of security limit? Or is it the new Chromium engine in RStudio?
For example:
test.md
content:
[external link](http://rstudio.com)
code example
library(shiny)
ui <- fluidPage(
includeMarkdown("test.md")
)
server <- function(input, output){}
shinyApp(ui = ui, server = server)