Nothing
#' Create business cards
#'
#' This output format is based on an example in the Github repo
#' \url{https://github.com/RelaxedJS/ReLaXed-examples}. See
#' \url{https://pagedown.rbind.io/business-card/} for an example.
#'
#' @return An R Markdown output format.
#' @export
#' @examples pagedown::business_card()
#' @inheritParams html_paged
business_card = function(template = pkg_resource('html', 'card.html')) {
rmarkdown::output_format(
list(opts_chunk = list(echo = FALSE)),
rmarkdown::pandoc_options('html', 'markdown', args = c(
'--template', rmarkdown::pandoc_path_arg(template),
'--variable', 'pagetitle=Business Card'
))
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.