blob: 21212a73aa0a5417077a17c2898b07c237b1504a [file] [log] [blame]
JJ Allaire2ec40242014-09-15 09:18:39 -04001#' Convert to a reveal.js presentation
christophe dervieuxf9bae672021-09-21 16:20:24 +02002#'
JJ Allaire2ec40242014-09-15 09:18:39 -04003#' Format for converting from R Markdown to a reveal.js presentation.
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +02004#'
5#' In reveal.js presentations you can use level 1 or level 2 headers for slides.
6#' If you use a mix of level 1 and level 2 headers then a two-dimensional layout
7#' will be produced, with level 1 headers building horizontally and level 2
8#' headers building vertically.
christophe dervieuxf9bae672021-09-21 16:20:24 +02009#'
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020010#' For additional documentation on using revealjs presentations see
11#' <https://github.com/rstudio/revealjs>
12#'
13#' # About plugins
14#'
15#' ## Built-in plugins with reveal.js
16#'
17#' ### Zoom
18#'
19#' When activated, ALT + Click can be used to zoom on a slide.
20#'
21#' ### Notes
22#'
23#' Show a [speaker view](https://revealjs.com/speaker-view/) in a separated
24#' window. This speaker view contains a timer, current slide, next slide, and
25#' speaker notes. It also duplicate the window to have presentation mode
26#' synchronized with main presentation.
27#'
28#' Use
29#' ```markdown
30#' ::: notes
31#' Content of speaker notes
32#' :::
33#' ```
34#' to create notes only viewable in presentation mode.
35#'
36#' ### Search
37#'
38#' When opt-in, it is possible to show a search box when pressing `CTRL + SHIFT +
39#' F`. It will seach in the whole presentation, and highlight matched words. The
40#' matches will also be highlighted in overview mode (pressing ESC to see all
41#' slides in one scrollable view)
42#'
43#' ## Menu
44#'
45#' A slideout menu plugin for Reveal.js to quickly jump to any slide by title.
46#'
47#' Version `r version <- readLines(revealjs_lib_path("plugin", "menu", "VERSION"))` is
48#' currently used and documentation for configurations can be found at
49#' [denehyg/reveal.js-menu](https://github.com/denehyg/reveal.js-menu/blob/`r version`/README.md)
50#'
51#' ### Known limitations
52#'
53#' Some configurations cannot be modified in the current template:
54#'
55#' * `loadIcons: false` the fontawesome icons are loaded by \pkg{rmarkdown}
56#' when this plugin is used
57#' * `custom: false`
58#' * `themes: false`
59#' * `transitions: false`
60
61#' ## Chalkboard
62#'
63#' A plugin adding a chalkboard and slide annotation
64#'
65#' Version `r version <- readLines(revealjs_lib_path("plugin", "chalkboard", "VERSION"))` is
66#' currently used and documentation for configurations can be found at
67#' [rajgoel/reveal.js-plugins](https://github.com/rajgoel/reveal.js-plugins/tree/`r version`/4.1.5/chalkboard)
68#'
69#' By default, chalkboard and annotations modes will be accessible using keyboard
70#' shortcuts, respectively, pressing B, or pressing C.
71#' In addition, buttons on the bottom left can be added by using the following
72#'
73#' ```yaml
74#' reveal_plugins:
75#' - chalkboard
76#' reveal_options:
77#' chalkboard:
78#' toggleNotesButton: true
79#' toggleChalkboardButton: true
80#' ```
JJ Allaire2ec40242014-09-15 09:18:39 -040081#' @inheritParams rmarkdown::beamer_presentation
82#' @inheritParams rmarkdown::pdf_document
83#' @inheritParams rmarkdown::html_document
christophe dervieuxf9bae672021-09-21 16:20:24 +020084#'
christophe dervieuxd26add32021-09-23 16:55:00 +020085#' @param center `TRUE` to vertically center content on slides
christophe dervieuxf9bae672021-09-21 16:20:24 +020086#' @param slide_level Level of heading to denote individual slides. If
christophe dervieuxd26add32021-09-23 16:55:00 +020087#' `slide_level` is 2 (the default), a two-dimensional layout will be
christophe dervieuxf9bae672021-09-21 16:20:24 +020088#' produced, with level 1 headers building horizontally and level 2 headers
89#' building vertically. It is not recommended that you use deeper nesting of
JJ Allaire4c178052016-01-30 19:35:39 -050090#' section levels with reveal.js.
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020091#' @param theme Visual theme (`r knitr::combine_words(setdiff(revealjs_themes(), "default"), before = '"', and = " or ")`)
92#' @param transition Slide transition (
93#' `r (trans <- knitr::combine_words(setdiff(revealjs_transitions(), "default"), before = '"', and = " or "))`
94#' )
95#' @param background_transition Slide background-transition (
96#' `r trans`
97#' )
christophe dervieuxf9bae672021-09-21 16:20:24 +020098#' @param reveal_options Additional options to specify for reveal.js (see
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020099#' <https://revealjs.com/config/> for details). Options for plugins can also
100#' be passed, using plugin name as first level key (e.g `list(slideNumber =
101#' FALSE, menu = list(number = TRUE))`).
JJ Allaire35c0b492017-02-10 09:30:24 -0500102#' @param reveal_plugins Reveal plugins to include. Available plugins include
Marc Kupietz03dbc5d2026-08-21 15:44:25 +0200103#' "notes", "search", "zoom", "chalkboard", and "menu". Defaults to
104#' `c("notes", "search", "menu", "zoom")`; pass `NULL` to render without
105#' any plugins. Note that `self_contained` must be set to `FALSE` in order
106#' to use Reveal plugins.
christophe dervieuxf9bae672021-09-21 16:20:24 +0200107#' @param template Pandoc template to use for rendering. Pass "default" to use
christophe dervieuxd26add32021-09-23 16:55:00 +0200108#' the rmarkdown package default template; pass `NULL` to use pandoc's
christophe dervieuxf9bae672021-09-21 16:20:24 +0200109#' built-in template; pass a path to use a custom template that you've
110#' created. Note that if you don't use the "default" template then some
christophe dervieuxd26add32021-09-23 16:55:00 +0200111#' features of `revealjs_presentation` won't be available (see the
JJ Allaire4c178052016-01-30 19:35:39 -0500112#' Templates section below for more details).
JJ Allaire35c0b492017-02-10 09:30:24 -0500113#' @param extra_dependencies Additional function arguments to pass to the base R
114#' Markdown HTML output formatter [rmarkdown::html_document_base()].
JJ Allaire8d1c2f42016-01-30 14:56:45 -0500115#' @param ... Ignored
christophe dervieuxf9bae672021-09-21 16:20:24 +0200116#'
christophe dervieuxd26add32021-09-23 16:55:00 +0200117#' @return R Markdown output format to pass to [rmarkdown::render()]
christophe dervieuxf9bae672021-09-21 16:20:24 +0200118#'
JJ Allaire2ec40242014-09-15 09:18:39 -0400119#' @examples
120#' \dontrun{
christophe dervieuxf9bae672021-09-21 16:20:24 +0200121#'
JJ Allaire2ec40242014-09-15 09:18:39 -0400122#' library(rmarkdown)
Marc Kupietze195cea2026-08-17 13:17:33 +0200123#' library(revealjs.ids)
christophe dervieuxf9bae672021-09-21 16:20:24 +0200124#'
JJ Allaire2ec40242014-09-15 09:18:39 -0400125#' # simple invocation
126#' render("pres.Rmd", revealjs_presentation())
christophe dervieuxf9bae672021-09-21 16:20:24 +0200127#'
JJ Allaire2ec40242014-09-15 09:18:39 -0400128#' # specify an option for incremental rendering
129#' render("pres.Rmd", revealjs_presentation(incremental = TRUE))
130#' }
christophe dervieuxf9bae672021-09-21 16:20:24 +0200131#'
JJ Allaire2ec40242014-09-15 09:18:39 -0400132#' @export
133revealjs_presentation <- function(incremental = FALSE,
134 center = FALSE,
JJ Allaire4c178052016-01-30 19:35:39 -0500135 slide_level = 2,
Christophe Dervieuxaa008e42021-09-23 16:52:37 +0200136 toc = FALSE,
137 toc_depth = 3,
JJ Allaire2ec40242014-09-15 09:18:39 -0400138 fig_width = 8,
139 fig_height = 6,
140 fig_retina = if (!fig_caption) 2,
141 fig_caption = FALSE,
Marc Kupietzf8d5ff12023-10-09 18:58:09 +0200142 self_contained = FALSE,
143 theme = "ids",
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +0200144 transition = "convex",
145 background_transition = "fade",
JJ Allaire37f45b72016-01-30 18:17:45 -0500146 reveal_options = NULL,
Marc Kupietz03dbc5d2026-08-21 15:44:25 +0200147 reveal_plugins = c("notes", "search", "menu", "zoom"),
JJ Allaire2ec40242014-09-15 09:18:39 -0400148 highlight = "default",
149 mathjax = "default",
150 template = "default",
JJ Allairefad55232015-10-19 07:47:26 -0400151 css = NULL,
JJ Allaire2ec40242014-09-15 09:18:39 -0400152 includes = NULL,
153 keep_md = FALSE,
154 lib_dir = NULL,
155 pandoc_args = NULL,
JJ Allaire375805c2016-11-15 08:56:43 -0500156 extra_dependencies = NULL,
Atsushi Yasumoto0bf44442020-02-15 00:08:30 +0900157 md_extensions = NULL,
JJ Allaire2ec40242014-09-15 09:18:39 -0400158 ...) {
christophe dervieuxf9bae672021-09-21 16:20:24 +0200159
JJ Allaire2ec40242014-09-15 09:18:39 -0400160 # base pandoc options for all reveal.js output
161 args <- c()
Christophe Dervieuxaa008e42021-09-23 16:52:37 +0200162
163 # table of contents
164 args <- c(args, pandoc_toc_args(toc, toc_depth))
christophe dervieuxf9bae672021-09-21 16:20:24 +0200165
JJ Allaire2ec40242014-09-15 09:18:39 -0400166 # template path and assets
JJ Allairea8c414b2016-01-30 14:36:53 -0500167 if (identical(template, "default")) {
christophe dervieux92fa4692021-09-21 16:15:17 +0200168 default_template <- reveal_resources("default.html")
JJ Allairea8c414b2016-01-30 14:36:53 -0500169 args <- c(args, "--template", pandoc_path_arg(default_template))
170 } else if (!is.null(template)) {
JJ Allaire2ec40242014-09-15 09:18:39 -0400171 args <- c(args, "--template", pandoc_path_arg(template))
JJ Allairea8c414b2016-01-30 14:36:53 -0500172 }
christophe dervieuxf9bae672021-09-21 16:20:24 +0200173
JJ Allaire2ec40242014-09-15 09:18:39 -0400174 # incremental
christophe dervieuxf9bae672021-09-21 16:20:24 +0200175 if (incremental) args <- c(args, "--incremental")
176
JJ Allaire2ec40242014-09-15 09:18:39 -0400177 # centering
JJ Allaire40fec332016-01-30 16:54:51 -0500178 args <- c(args, pandoc_variable_arg("center", jsbool(center)))
christophe dervieuxf9bae672021-09-21 16:20:24 +0200179
JJ Allaire4c178052016-01-30 19:35:39 -0500180 # slide level
JJ Allairec58a6c42016-03-30 23:45:21 -0400181 args <- c(args, "--slide-level", as.character(slide_level))
christophe dervieuxf9bae672021-09-21 16:20:24 +0200182
JJ Allaire2ec40242014-09-15 09:18:39 -0400183 # theme
184 theme <- match.arg(theme, revealjs_themes())
christophe dervieuxf9bae672021-09-21 16:20:24 +0200185 if (identical(theme, "default")) {
JJ Allaire2ec40242014-09-15 09:18:39 -0400186 theme <- "simple"
christophe dervieuxf9bae672021-09-21 16:20:24 +0200187 } else if (identical(theme, "dark")) {
JJ Allaire6da1bb62016-01-30 14:28:39 -0500188 theme <- "black"
christophe dervieuxf9bae672021-09-21 16:20:24 +0200189 }
190 if (theme %in% c("blood", "moon", "night", "black")) {
christophe dervieux062940d2021-09-21 16:26:14 +0200191 args <- c(args, pandoc_variable_arg("theme-dark"))
christophe dervieuxf9bae672021-09-21 16:20:24 +0200192 }
christophe dervieux1ebd5132021-09-22 08:47:21 +0200193 args <- c(args, pandoc_variable_arg("theme", theme))
christophe dervieuxf9bae672021-09-21 16:20:24 +0200194
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200195 if (theme == "ids") {
196 args <- c(args, pandoc_variable_arg("theme-ids"))
197 fig_height = 7
198 fig_width = 12
199 }
christophe dervieuxf9bae672021-09-21 16:20:24 +0200200
JJ Allaire2ec40242014-09-15 09:18:39 -0400201 # transition
Marc Kupietz9d96fda2026-08-11 16:55:13 +0200202 if (missing(transition) && identical(theme, "ids")) {
203 # IDS theme: slide the slides in instead of rotating them (reveal.js'
204 # own default, convex), unless the user explicitly asked for something
205 # else. The formal default has to stay "convex" for the other themes.
206 transition <- "slide"
207 }
JJ Allaire2ec40242014-09-15 09:18:39 -0400208 transition <- match.arg(transition, revealjs_transitions())
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +0200209 if (identical(transition, "default")) {
210 # revealjs default is convex
211 transition <- "convex"
212 }
christophe dervieux062940d2021-09-21 16:26:14 +0200213 args <- c(args, pandoc_variable_arg("transition", transition))
christophe dervieuxf9bae672021-09-21 16:20:24 +0200214
junkkad55cff02015-03-15 22:27:03 +0100215 # background_transition
216 background_transition <- match.arg(background_transition, revealjs_transitions())
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +0200217 if (identical(background_transition, "default")) {
218 # revealjs default is fade
219 background_transition <- "fade"
220 }
christophe dervieux062940d2021-09-21 16:26:14 +0200221 args <- c(args, pandoc_variable_arg("backgroundTransition", background_transition))
christophe dervieuxf9bae672021-09-21 16:20:24 +0200222
JJ Allaire4ae486f2016-03-23 06:08:42 -0400223 # use history
224 args <- c(args, pandoc_variable_arg("history", "true"))
christophe dervieuxf9bae672021-09-21 16:20:24 +0200225
Marc Kupietza0f8f682026-08-08 14:13:11 +0200226 # The IDS corporate design puts the orange bar flush against the top left
227 # corner of the slide. reveal.js defaults to margin = 0.04, i.e. it keeps 4%
228 # of the display empty around the content, which would leave a white border
229 # above and to the left of the bar. Default to 0 instead, unless the document
230 # asks for a margin of its own via reveal_options.
231 if (!is.list(reveal_options) || is.null(reveal_options[["margin"]])) {
232 args <- c(args, pandoc_variable_arg("margin", "0"))
233 }
234
JJ Allaire37f45b72016-01-30 18:17:45 -0500235 # additional reveal options
236 if (is.list(reveal_options)) {
JJ Allaire375805c2016-11-15 08:56:43 -0500237 for (option in names(reveal_options)) {
JJ Allaire064552c2017-02-10 10:28:41 -0500238 # special handling for nested options
239 if (option %in% c("chalkboard", "menu")) {
240 nested_options <- reveal_options[[option]]
241 for (nested_option in names(nested_options)) {
Christophe Dervieux2f01dc92021-09-22 09:37:18 +0200242 args <- c(args,
243 process_reveal_option(
244 paste0(option, "-", nested_option),
245 nested_options[[nested_option]]
246 )
christophe dervieuxf9bae672021-09-21 16:20:24 +0200247 )
JJ Allaire375805c2016-11-15 08:56:43 -0500248 }
Christophe Dervieux2f01dc92021-09-22 09:37:18 +0200249 } else {
250 # standard top-level options
251 args <- c(args, process_reveal_option(option, reveal_options[[option]]))
JJ Allaire375805c2016-11-15 08:56:43 -0500252 }
JJ Allaire37f45b72016-01-30 18:17:45 -0500253 }
254 }
christophe dervieuxf9bae672021-09-21 16:20:24 +0200255
JJ Allaire82a8dee2016-07-12 10:25:36 -0400256 # reveal plugins
257 if (is.character(reveal_plugins)) {
christophe dervieuxf9bae672021-09-21 16:20:24 +0200258
JJ Allaire82a8dee2016-07-12 10:25:36 -0400259 # validate that we need to use self_contained for plugins
christophe dervieuxf9bae672021-09-21 16:20:24 +0200260 if (self_contained) {
Marc Kupietz03dbc5d2026-08-21 15:44:25 +0200261 if (missing(reveal_plugins)) {
262 # the default plugin set collided with an explicitly requested
263 # self_contained render -- drop the defaults instead of failing
264 warning("Reveal plugins require self_contained: false -- ",
265 "rendering without the default plugins.",
266 call. = FALSE
267 )
268 reveal_plugins <- character(0)
269 } else {
270 stop("Using reveal_plugins requires self_contained: false")
271 }
christophe dervieuxf9bae672021-09-21 16:20:24 +0200272 }
273
JJ Allaire82a8dee2016-07-12 10:25:36 -0400274 # validate specified plugins are supported
JJ Allaire064552c2017-02-10 10:28:41 -0500275 supported_plugins <- c("notes", "search", "zoom", "chalkboard", "menu")
JJ Allaire82a8dee2016-07-12 10:25:36 -0400276 invalid_plugins <- setdiff(reveal_plugins, supported_plugins)
christophe dervieuxf9bae672021-09-21 16:20:24 +0200277 if (length(invalid_plugins) > 0) {
JJ Allaire82a8dee2016-07-12 10:25:36 -0400278 stop("The following plugin(s) are not supported: ",
christophe dervieuxf9bae672021-09-21 16:20:24 +0200279 paste(invalid_plugins, collapse = ", "),
280 call. = FALSE
281 )
282 }
283
JJ Allaire82a8dee2016-07-12 10:25:36 -0400284 # add plugins
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +0200285 if ("chalkboard" %in% reveal_plugins) {
286 # chalkboard require customcontrols so we add it to activate in the template
287 reveal_plugins <- c(reveal_plugins, "customcontrols")
288 }
JJ Allaire82a8dee2016-07-12 10:25:36 -0400289 sapply(reveal_plugins, function(plugin) {
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +0200290 args <<- c(args, pandoc_variable_arg(paste0("plugin-", plugin)))
291 if (plugin %in% c("customcontrols", "menu")) {
christophe dervieuxf9bae672021-09-21 16:20:24 +0200292 extra_dependencies <<- append(
293 extra_dependencies,
294 list(rmarkdown::html_dependency_font_awesome())
295 )
JJ Allaire375805c2016-11-15 08:56:43 -0500296 }
christophe dervieuxf9bae672021-09-21 16:20:24 +0200297 })
JJ Allaire82a8dee2016-07-12 10:25:36 -0400298 }
christophe dervieuxf9bae672021-09-21 16:20:24 +0200299
JJ Allaire2ec40242014-09-15 09:18:39 -0400300 # content includes
301 args <- c(args, includes_to_pandoc_args(includes))
christophe dervieuxf9bae672021-09-21 16:20:24 +0200302
JJ Allairefad55232015-10-19 07:47:26 -0400303 # additional css
christophe dervieuxf9bae672021-09-21 16:20:24 +0200304 for (css_file in css) {
JJ Allairefad55232015-10-19 07:47:26 -0400305 args <- c(args, "--css", pandoc_path_arg(css_file))
christophe dervieuxf9bae672021-09-21 16:20:24 +0200306 }
307
JJ Allaire2ec40242014-09-15 09:18:39 -0400308 # pre-processor for arguments that may depend on the name of the
309 # the input file (e.g. ones that need to copy supporting files)
310 pre_processor <- function(metadata, input_file, runtime, knit_meta, files_dir,
311 output_dir) {
christophe dervieuxf9bae672021-09-21 16:20:24 +0200312
JJ Allairee60feb22016-01-30 18:28:47 -0500313 # we don't work with runtime shiny
314 if (identical(runtime, "shiny")) {
christophe dervieuxf9bae672021-09-21 16:20:24 +0200315 stop("revealjs_presentation is not compatible with runtime 'shiny'",
316 call. = FALSE
317 )
JJ Allairee60feb22016-01-30 18:28:47 -0500318 }
christophe dervieuxf9bae672021-09-21 16:20:24 +0200319
JJ Allaire2ec40242014-09-15 09:18:39 -0400320 # use files_dir as lib_dir if not explicitly specified
christophe dervieuxf9bae672021-09-21 16:20:24 +0200321 if (is.null(lib_dir)) {
JJ Allaire2ec40242014-09-15 09:18:39 -0400322 lib_dir <- files_dir
christophe dervieuxf9bae672021-09-21 16:20:24 +0200323 }
324
JJ Allaire2ec40242014-09-15 09:18:39 -0400325 # extra args
326 args <- c()
christophe dervieuxf9bae672021-09-21 16:20:24 +0200327
JJ Allaire2ec40242014-09-15 09:18:39 -0400328 # reveal.js
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +0200329 revealjs_path <- revealjs_lib_path()
christophe dervieuxf9bae672021-09-21 16:20:24 +0200330 if (!self_contained || identical(.Platform$OS.type, "windows")) {
JJ Allaire2ec40242014-09-15 09:18:39 -0400331 revealjs_path <- relative_to(
christophe dervieuxf9bae672021-09-21 16:20:24 +0200332 output_dir, render_supporting_files(revealjs_path, lib_dir)
333 )
334 } else {
JJ Allaireeea3bca2016-07-13 12:42:01 -0400335 revealjs_path <- pandoc_path_arg(revealjs_path)
christophe dervieuxf9bae672021-09-21 16:20:24 +0200336 }
christophe dervieux062940d2021-09-21 16:26:14 +0200337 args <- c(args, pandoc_variable_arg("revealjs-url", revealjs_path))
christophe dervieuxf9bae672021-09-21 16:20:24 +0200338
JJ Allaire2ec40242014-09-15 09:18:39 -0400339 # highlight
340 args <- c(args, pandoc_highlight_args(highlight, default = "pygments"))
christophe dervieuxf9bae672021-09-21 16:20:24 +0200341
JJ Allaire2ec40242014-09-15 09:18:39 -0400342 # return additional args
343 args
344 }
christophe dervieuxf9bae672021-09-21 16:20:24 +0200345
JJ Allaire2ec40242014-09-15 09:18:39 -0400346 # return format
347 output_format(
348 knitr = knitr_options_html(fig_width, fig_height, fig_retina, keep_md),
christophe dervieuxf9bae672021-09-21 16:20:24 +0200349 pandoc = pandoc_options(
350 to = "revealjs",
christophe dervieuxad3a5752021-09-23 10:24:09 +0200351 from = from_rmarkdown(fig_caption, md_extensions),
christophe dervieuxf9bae672021-09-21 16:20:24 +0200352 args = args
353 ),
JJ Allaire2ec40242014-09-15 09:18:39 -0400354 keep_md = keep_md,
355 clean_supporting = self_contained,
356 pre_processor = pre_processor,
christophe dervieuxf9bae672021-09-21 16:20:24 +0200357 base_format = html_document_base(
christophe dervieux0acc6c92021-09-23 11:18:18 +0200358 lib_dir = lib_dir,
christophe dervieuxf9bae672021-09-21 16:20:24 +0200359 self_contained = self_contained,
360 mathjax = mathjax,
361 pandoc_args = pandoc_args,
362 extra_dependencies = extra_dependencies,
363 ...
364 )
365 )
JJ Allaire2ec40242014-09-15 09:18:39 -0400366}
367
368revealjs_themes <- function() {
christophe dervieuxf9bae672021-09-21 16:20:24 +0200369 c(
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +0200370 "default", # not used by reveal
Marc Kupietza737b1b2023-10-07 09:32:20 +0200371 "ids",
JJ Allaire2ec40242014-09-15 09:18:39 -0400372 "simple",
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +0200373 "dark", # our alias for black
374 "black",
JJ Allaire2ec40242014-09-15 09:18:39 -0400375 "sky",
376 "beige",
377 "serif",
378 "solarized",
JJ Allaire2ec40242014-09-15 09:18:39 -0400379 "blood",
380 "moon",
junkka77fbf082015-03-15 22:25:47 +0100381 "night",
junkka77fbf082015-03-15 22:25:47 +0100382 "league",
christophe dervieuxf9bae672021-09-21 16:20:24 +0200383 "white"
384 )
JJ Allaire2ec40242014-09-15 09:18:39 -0400385}
386
JJ Allaire2ec40242014-09-15 09:18:39 -0400387revealjs_transitions <- function() {
junkka77fbf082015-03-15 22:25:47 +0100388 c(
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +0200389 "default", # not used by reveal
390 "convex",
JJ Allaire2ec40242014-09-15 09:18:39 -0400391 "fade",
junkka77fbf082015-03-15 22:25:47 +0100392 "slide",
junkka77fbf082015-03-15 22:25:47 +0100393 "concave",
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +0200394 "zoom",
395 "none"
christophe dervieuxf9bae672021-09-21 16:20:24 +0200396 )
JJ Allaire2ec40242014-09-15 09:18:39 -0400397}