R/typography.R

Defines functions fd_divider fd_blockquote fd_abbreviation

Documented in fd_abbreviation fd_blockquote fd_divider

#' Divider for Foundation UI
#'
#' @export
fd_divider <- function() {
  tags$hr()
}

#' Blockquote for Foundation UI
#'
#' @export
fd_blockquote <- function(text, person) {
  tags$blockquote(
    text,
    tags$cite(person)
  )
}

#' Abbreviations for Foundation UI
#'
#' @export
fd_abbreviation <- function(short, full) {
  tags$abbr(title = full, short)
}
ashbaldry/shinyfoundation documentation built on Nov. 3, 2019, 1:57 p.m.