您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

8 行
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. }