R/title-author.R

#' Find and insert author of rmarkdown document
#'
#' Finds author/name and prints in html (line breaks if necessary).
#'
#' @export
title_author <- function() {
	gsub("\n+", "<br/>", paste(find_author(), collapse = "<br/>"))
}
mkearney/rmdees documentation built on May 9, 2019, 5:53 a.m.