Unable to load images inside html file through shiny app

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)

Is documentation_raw.html a self-contained html file? In other words, if there is a folder like documentation_raw_files/ in the same folder then it is not self-contained.

A self-contained file should load the images fine, but if the resources are in a separate folder then that mgiht be causing the issue. I don't know how to fix that other than to create a self-contained html file, if that's an option (e.g. if you created the .html file in RMarkdown or Quarto).

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.