You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
258B

  1. div_with_class <- function(..., class = "") {
  2. htmltools::tags$div(..., class = class)
  3. }
  4. apply_tag <- function(..., tag, class = NULL, extra_attributes = NULL) {
  5. lapply(list(...), function(x) htmltools::tag(tag, c(x, class = class, extra_attributes)))
  6. }