R/date.banner.R

Defines functions date.banner

Documented in date.banner

#' A function to create a banner with the date inside
#'
#' This function requiering the bannerCommenter package creates a banner with the date of the day inside. It helps keeping track of the changes in the code
#' @keywords date banner
#' @export
#'

date.banner <- function() {
  require("bannerCommenter")
  today <- format(Sys.Date(), format = "%A %d.%m.%Y")
  today <- as.character(today)
  open_box(today)
}
EricMenetre/NPL documentation built on June 23, 2021, 2:10 p.m.