skip to Main Content

Ubuntu – using HTML's details/summary in shiny

How can I restore the "arrow" style in HTML's details/summary collapsible section? library(shiny) ui <- fluidPage(tags$details(tags$summary("Collapsible"), "This content is inside")) writeLines(capture.output(ui), "~/tmp/qq.html") shinyApp(ui = ui, server = function(input, output) {}) Comparing the raw HTML (in "qq.html") on the left with…

VIEW QUESTION
Back To Top
Search