I am trying to display html file through shiny app. The text part appears fine, but image does not load. The html document shows image when simply opened in a browser.
my code example:
library(shiny)
ui <- fluidPage(
titlePanel(" "),
mainPanel(
includeHTML("documentation_raw.html")
)
)
server <- function(input, output) {
}
shinyApp(ui, server)