# 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))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.