Looks awesome! Wondering if there could be a wrapper on the details() function specifically for Shiny usage, e.g.
details_shiny <- function(object, summary, ...) {
htmltools::HTML(
details::details(
object = object,
summary = summary,
lang = NULL,
imgur = FALSE,
output = "character",
...
)
)
}
where ... overrides the defaults provided above, perhaps?