0

I would rather not use an iFrame to view web hosted PDFs in my Shiny application if I can at all avoid it. It is bad practice for my particular project. Are there alternatives for viewing hosted PDFs in R Shiny?

EDIT: By hosted, I mean stored in a file storage service, such as AWS S3 or Azure Blob

FreyGeospatial
  • 325
  • 4
  • 17

1 Answers1

-1

You could try to use the HTML-function to include HTML-Code in your shiny project.

tags$div(
  HTML("HTML-Code")
)

There seem to be other ways of showing PDFs in HTML, see e.g. here

LBi
  • 49
  • 1
  • 6