R/golem_utils_ui.R

Defines functions rep_br

# Repeat tags$br
#
# @param times the number of br to return
#
# @return the number of br specified in times
# @export
#
# @examples
# rep_br(5)
#
rep_br <- function(times = 1) {
  htmltools::HTML(rep("<br/>", times = times))
}
steverozen/mSigAct.server documentation built on July 9, 2023, 4:52 a.m.