R/roxtemp.R

Defines functions roxtemp

Documented in roxtemp

##' Generate a Roxygen Template
##'
##' @title Generate a Roxygen Template
##' @author Dustin Fife
##' @export
roxtemp = function(){
	f = paste0(
"##' Insert title here
##'
##' Write the description here
##'	
##' Write the details here
##' @param
##' @param
##' @aliases
##' @seealso \\code{\\link{MASS}}
##' @references
##' @return \\item{}{}
##' @author
##' @export
##' @examples"
)
	cat(f)
}

Try the fifer package in your browser

Any scripts or data that you put into this service are public.

fifer documentation built on May 30, 2017, 7:40 a.m.