tags$meta(`http-equiv`="pragma", content="no-cache") # <meta http-equiv="pragma"
content="no-cache">
tags$meta(`http-equiv`="Cache-control", content="no-cache") # <meta http-equiv="Cache-control"
content="no-cache">
tags$meta(`http-equiv`="Cache-control", content="no-store") #<meta http-equiv="Cache-control" content="no-store">
I wonder where I should place the code in order to let the HTML meta tags appear between <head> </head>
Thank you!
Jui-Hua
###### The snippet of code
shinyUI(
pageWithSidebar(
# Application title
headerPanel("XXX"),
sidebarPanel(
)
)