blob: 1931d7605083a142775895b8769e793c5c68011a [file] [log] [blame]
JJ Allaire2ec40242014-09-15 09:18:39 -04001#' Convert to a reveal.js presentation
JJ Allaire4c178052016-01-30 19:35:39 -05002#'
JJ Allaire2ec40242014-09-15 09:18:39 -04003#' Format for converting from R Markdown to a reveal.js presentation.
JJ Allaire4c178052016-01-30 19:35:39 -05004#'
JJ Allaire2ec40242014-09-15 09:18:39 -04005#' @inheritParams rmarkdown::beamer_presentation
6#' @inheritParams rmarkdown::pdf_document
7#' @inheritParams rmarkdown::html_document
JJ Allaire4c178052016-01-30 19:35:39 -05008#'
JJ Allaire2ec40242014-09-15 09:18:39 -04009#' @param center \code{TRUE} to vertically center content on slides
JJ Allaire35c0b492017-02-10 09:30:24 -050010#' @param slide_level Level of heading to denote individual slides. If
11#' \code{slide_level} is 2 (the default), a two-dimensional layout will be
12#' produced, with level 1 headers building horizontally and level 2 headers
13#' building vertically. It is not recommended that you use deeper nesting of
JJ Allaire4c178052016-01-30 19:35:39 -050014#' section levels with reveal.js.
JJ Allaire35c0b492017-02-10 09:30:24 -050015#' @param theme Visual theme ("simple", "sky", "beige", "serif", "solarized",
JJ Allaire4c178052016-01-30 19:35:39 -050016#' "blood", "moon", "night", "black", "league" or "white").
junkkad4b3a162015-03-16 07:49:11 +010017#' @param transition Slide transition ("default", "none", "fade", "slide",
18#' "convex", "concave" or "zoom")
JJ Allaire35c0b492017-02-10 09:30:24 -050019#' @param background_transition Slide background-transition ("default", "none",
JJ Allaire4c178052016-01-30 19:35:39 -050020#' "fade", "slide", "convex", "concave" or "zoom")
21#' @param reveal_options Additional options to specify for reveal.js (see
22#' \href{https://github.com/hakimel/reveal.js#configuration}{https://github.com/hakimel/reveal.js#configuration}
JJ Allaire35c0b492017-02-10 09:30:24 -050023#' for details).
24#' @param reveal_plugins Reveal plugins to include. Available plugins include
JJ Allaire064552c2017-02-10 10:28:41 -050025#' "notes", "search", "zoom", "chalkboard", and "menu". Note that
JJ Allaire35c0b492017-02-10 09:30:24 -050026#' \code{self_contained} must be set to \code{FALSE} in order to use Reveal
27#' plugins.
28#' @param template Pandoc template to use for rendering. Pass "default" to use
29#' the rmarkdown package default template; pass \code{NULL} to use pandoc's
30#' built-in template; pass a path to use a custom template that you've
31#' created. Note that if you don't use the "default" template then some
32#' features of \code{revealjs_presentation} won't be available (see the
JJ Allaire4c178052016-01-30 19:35:39 -050033#' Templates section below for more details).
JJ Allaire35c0b492017-02-10 09:30:24 -050034#' @param extra_dependencies Additional function arguments to pass to the base R
35#' Markdown HTML output formatter [rmarkdown::html_document_base()].
JJ Allaire8d1c2f42016-01-30 14:56:45 -050036#' @param ... Ignored
JJ Allaire4c178052016-01-30 19:35:39 -050037#'
JJ Allaire2ec40242014-09-15 09:18:39 -040038#' @return R Markdown output format to pass to \code{\link{render}}
JJ Allaire4c178052016-01-30 19:35:39 -050039#'
JJ Allaire2ec40242014-09-15 09:18:39 -040040#' @details
JJ Allaire309bc7d2016-01-30 19:17:54 -050041#'
JJ Allaire4c178052016-01-30 19:35:39 -050042#' In reveal.js presentations you can use level 1 or level 2 headers for slides.
43#' If you use a mix of level 1 and level 2 headers then a two-dimensional layout
JJ Allaire35c0b492017-02-10 09:30:24 -050044#' will be produced, with level 1 headers building horizontally and level 2
JJ Allaire4c178052016-01-30 19:35:39 -050045#' headers building vertically.
46#'
JJ Allaire35c0b492017-02-10 09:30:24 -050047#' For additional documentation on using revealjs presentations see
JJ Allaire4c178052016-01-30 19:35:39 -050048#' \href{https://github.com/rstudio/revealjs}{https://github.com/rstudio/revealjs}.
JJ Allaire35c0b492017-02-10 09:30:24 -050049#'
JJ Allaire2ec40242014-09-15 09:18:39 -040050#' @examples
51#' \dontrun{
JJ Allaire4c178052016-01-30 19:35:39 -050052#'
JJ Allaire2ec40242014-09-15 09:18:39 -040053#' library(rmarkdown)
54#' library(revealjs)
JJ Allaire4c178052016-01-30 19:35:39 -050055#'
JJ Allaire2ec40242014-09-15 09:18:39 -040056#' # simple invocation
57#' render("pres.Rmd", revealjs_presentation())
JJ Allaire4c178052016-01-30 19:35:39 -050058#'
JJ Allaire2ec40242014-09-15 09:18:39 -040059#' # specify an option for incremental rendering
60#' render("pres.Rmd", revealjs_presentation(incremental = TRUE))
61#' }
JJ Allaire4c178052016-01-30 19:35:39 -050062#'
63#'
JJ Allaire2ec40242014-09-15 09:18:39 -040064#' @export
65revealjs_presentation <- function(incremental = FALSE,
66 center = FALSE,
JJ Allaire4c178052016-01-30 19:35:39 -050067 slide_level = 2,
JJ Allaire2ec40242014-09-15 09:18:39 -040068 fig_width = 8,
69 fig_height = 6,
70 fig_retina = if (!fig_caption) 2,
71 fig_caption = FALSE,
72 smart = TRUE,
73 self_contained = TRUE,
JJ Allaire6da1bb62016-01-30 14:28:39 -050074 theme = "simple",
JJ Allaire2ec40242014-09-15 09:18:39 -040075 transition = "default",
junkkad55cff02015-03-15 22:27:03 +010076 background_transition = "default",
JJ Allaire37f45b72016-01-30 18:17:45 -050077 reveal_options = NULL,
JJ Allaire82a8dee2016-07-12 10:25:36 -040078 reveal_plugins = NULL,
JJ Allaire2ec40242014-09-15 09:18:39 -040079 highlight = "default",
80 mathjax = "default",
81 template = "default",
JJ Allairefad55232015-10-19 07:47:26 -040082 css = NULL,
JJ Allaire2ec40242014-09-15 09:18:39 -040083 includes = NULL,
84 keep_md = FALSE,
85 lib_dir = NULL,
86 pandoc_args = NULL,
JJ Allaire375805c2016-11-15 08:56:43 -050087 extra_dependencies = NULL,
Atsushi Yasumoto0bf44442020-02-15 00:08:30 +090088 md_extensions = NULL,
JJ Allaire2ec40242014-09-15 09:18:39 -040089 ...) {
90
91 # function to lookup reveal resource
92 reveal_resources <- function() {
JJ Allaire2d8f3f22016-01-30 13:08:52 -050093 system.file("rmarkdown/templates/revealjs_presentation/resources",
JJ Allaire2ec40242014-09-15 09:18:39 -040094 package = "revealjs")
95 }
96
97 # base pandoc options for all reveal.js output
98 args <- c()
99
100 # template path and assets
JJ Allairea8c414b2016-01-30 14:36:53 -0500101 if (identical(template, "default")) {
102 default_template <- system.file(
103 "rmarkdown/templates/revealjs_presentation/resources/default.html",
104 package = "revealjs"
105 )
106 args <- c(args, "--template", pandoc_path_arg(default_template))
107 } else if (!is.null(template)) {
JJ Allaire2ec40242014-09-15 09:18:39 -0400108 args <- c(args, "--template", pandoc_path_arg(template))
JJ Allairea8c414b2016-01-30 14:36:53 -0500109 }
JJ Allaire2ec40242014-09-15 09:18:39 -0400110
111 # incremental
112 if (incremental)
113 args <- c(args, "--incremental")
114
115 # centering
JJ Allaire40fec332016-01-30 16:54:51 -0500116 jsbool <- function(value) ifelse(value, "true", "false")
117 args <- c(args, pandoc_variable_arg("center", jsbool(center)))
JJ Allaire2ec40242014-09-15 09:18:39 -0400118
JJ Allaire4c178052016-01-30 19:35:39 -0500119 # slide level
JJ Allairec58a6c42016-03-30 23:45:21 -0400120 args <- c(args, "--slide-level", as.character(slide_level))
JJ Allaire4c178052016-01-30 19:35:39 -0500121
JJ Allaire2ec40242014-09-15 09:18:39 -0400122 # theme
123 theme <- match.arg(theme, revealjs_themes())
124 if (identical(theme, "default"))
125 theme <- "simple"
126 else if (identical(theme, "dark"))
JJ Allaire6da1bb62016-01-30 14:28:39 -0500127 theme <- "black"
128 if (theme %in% c("blood", "moon", "night", "black"))
JJ Allaire2ec40242014-09-15 09:18:39 -0400129 args <- c(args, "--variable", "theme-dark")
130 args <- c(args, "--variable", paste("theme=", theme, sep=""))
131
132
133 # transition
134 transition <- match.arg(transition, revealjs_transitions())
135 args <- c(args, "--variable", paste("transition=", transition, sep=""))
136
junkkad55cff02015-03-15 22:27:03 +0100137 # background_transition
138 background_transition <- match.arg(background_transition, revealjs_transitions())
JJ Allaire40fec332016-01-30 16:54:51 -0500139 args <- c(args, "--variable", paste("backgroundTransition=", background_transition, sep=""))
140
JJ Allaire4ae486f2016-03-23 06:08:42 -0400141 # use history
142 args <- c(args, pandoc_variable_arg("history", "true"))
JJ Allaire8bfd3642016-03-21 13:43:13 -0400143
JJ Allaire37f45b72016-01-30 18:17:45 -0500144 # additional reveal options
145 if (is.list(reveal_options)) {
JJ Allaire375805c2016-11-15 08:56:43 -0500146
147 add_reveal_option <- function(option, value) {
JJ Allaire37f45b72016-01-30 18:17:45 -0500148 if (is.logical(value))
149 value <- jsbool(value)
JJ Allairea075efe2016-07-14 21:24:12 -0400150 else if (is.character(value))
151 value <- paste0("'", value, "'")
JJ Allaire375805c2016-11-15 08:56:43 -0500152 args <<- c(args, pandoc_variable_arg(option, value))
153 }
154
155 for (option in names(reveal_options)) {
JJ Allaire064552c2017-02-10 10:28:41 -0500156 # special handling for nested options
157 if (option %in% c("chalkboard", "menu")) {
158 nested_options <- reveal_options[[option]]
159 for (nested_option in names(nested_options)) {
160 add_reveal_option(paste0(option, "-", nested_option),
161 nested_options[[nested_option]])
JJ Allaire375805c2016-11-15 08:56:43 -0500162 }
163 }
164 # standard top-level options
165 else {
166 add_reveal_option(option, reveal_options[[option]])
167 }
JJ Allaire37f45b72016-01-30 18:17:45 -0500168 }
169 }
170
JJ Allaire82a8dee2016-07-12 10:25:36 -0400171 # reveal plugins
172 if (is.character(reveal_plugins)) {
173
174 # validate that we need to use self_contained for plugins
175 if (self_contained)
176 stop("Using reveal_plugins requires self_contained: false")
177
178 # validate specified plugins are supported
JJ Allaire064552c2017-02-10 10:28:41 -0500179 supported_plugins <- c("notes", "search", "zoom", "chalkboard", "menu")
JJ Allaire82a8dee2016-07-12 10:25:36 -0400180 invalid_plugins <- setdiff(reveal_plugins, supported_plugins)
181 if (length(invalid_plugins) > 0)
182 stop("The following plugin(s) are not supported: ",
183 paste(invalid_plugins, collapse = ", "), call. = FALSE)
184
185 # add plugins
186 sapply(reveal_plugins, function(plugin) {
187 args <<- c(args, pandoc_variable_arg(paste0("plugin-", plugin), "1"))
JJ Allaire064552c2017-02-10 10:28:41 -0500188 if (plugin %in% c("chalkboard", "menu")) {
JJ Allaire375805c2016-11-15 08:56:43 -0500189 extra_dependencies <<- append(extra_dependencies,
190 list(rmarkdown::html_dependency_font_awesome()))
191
192 }
JJ Allaire82a8dee2016-07-12 10:25:36 -0400193 })
194 }
195
JJ Allaire2ec40242014-09-15 09:18:39 -0400196 # content includes
197 args <- c(args, includes_to_pandoc_args(includes))
198
JJ Allairefad55232015-10-19 07:47:26 -0400199 # additional css
200 for (css_file in css)
201 args <- c(args, "--css", pandoc_path_arg(css_file))
202
JJ Allaire2ec40242014-09-15 09:18:39 -0400203 # pre-processor for arguments that may depend on the name of the
204 # the input file (e.g. ones that need to copy supporting files)
205 pre_processor <- function(metadata, input_file, runtime, knit_meta, files_dir,
206 output_dir) {
207
JJ Allairee60feb22016-01-30 18:28:47 -0500208 # we don't work with runtime shiny
209 if (identical(runtime, "shiny")) {
210 stop("revealjs_presentation is not compatible with runtime 'shiny'",
211 call. = FALSE)
212 }
213
JJ Allaire2ec40242014-09-15 09:18:39 -0400214 # use files_dir as lib_dir if not explicitly specified
215 if (is.null(lib_dir))
216 lib_dir <- files_dir
217
218 # extra args
219 args <- c()
220
221 # reveal.js
JJ Allaire01541a22017-02-10 10:32:28 -0500222 revealjs_path <- system.file("reveal.js-3.3.0.1", package = "revealjs")
JJ Allaire2ec40242014-09-15 09:18:39 -0400223 if (!self_contained || identical(.Platform$OS.type, "windows"))
224 revealjs_path <- relative_to(
225 output_dir, render_supporting_files(revealjs_path, lib_dir))
JJ Allaireeea3bca2016-07-13 12:42:01 -0400226 else
227 revealjs_path <- pandoc_path_arg(revealjs_path)
BruceZhao30f9bc02016-07-13 22:33:54 +0800228 args <- c(args, "--variable", paste0("revealjs-url=", revealjs_path))
JJ Allaire2ec40242014-09-15 09:18:39 -0400229
230 # highlight
231 args <- c(args, pandoc_highlight_args(highlight, default = "pygments"))
232
233 # return additional args
234 args
235 }
236
237 # return format
238 output_format(
239 knitr = knitr_options_html(fig_width, fig_height, fig_retina, keep_md),
240 pandoc = pandoc_options(to = "revealjs",
Atsushi Yasumoto0bf44442020-02-15 00:08:30 +0900241 from = rmarkdown_format(paste0(
242 md_extensions,
243 ifelse(fig_caption, "", "-implicit_figures")
244 )),
JJ Allaire2ec40242014-09-15 09:18:39 -0400245 args = args),
246 keep_md = keep_md,
247 clean_supporting = self_contained,
248 pre_processor = pre_processor,
249 base_format = html_document_base(smart = smart, lib_dir = lib_dir,
250 self_contained = self_contained,
251 mathjax = mathjax,
JJ Allaire375805c2016-11-15 08:56:43 -0500252 pandoc_args = pandoc_args,
253 extra_dependencies = extra_dependencies,
254 ...))
JJ Allaire2ec40242014-09-15 09:18:39 -0400255}
256
257revealjs_themes <- function() {
258 c("default",
JJ Allaire6da1bb62016-01-30 14:28:39 -0500259 "dark",
JJ Allaire2ec40242014-09-15 09:18:39 -0400260 "simple",
261 "sky",
262 "beige",
263 "serif",
264 "solarized",
JJ Allaire2ec40242014-09-15 09:18:39 -0400265 "blood",
266 "moon",
junkka77fbf082015-03-15 22:25:47 +0100267 "night",
268 "black",
269 "league",
270 "white")
JJ Allaire2ec40242014-09-15 09:18:39 -0400271}
272
273
274revealjs_transitions <- function() {
junkka77fbf082015-03-15 22:25:47 +0100275 c(
276 "default",
277 "none",
JJ Allaire2ec40242014-09-15 09:18:39 -0400278 "fade",
junkka77fbf082015-03-15 22:25:47 +0100279 "slide",
280 "convex",
281 "concave",
282 "zoom"
283 )
JJ Allaire2ec40242014-09-15 09:18:39 -0400284}
285
286