JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 1 | #' Convert to a reveal.js presentation |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 2 | #' |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 3 | #' Format for converting from R Markdown to a reveal.js presentation. |
Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 4 | #' |
| 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 dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 9 | #' |
Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 10 | #' 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 Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 81 | #' @inheritParams rmarkdown::beamer_presentation |
| 82 | #' @inheritParams rmarkdown::pdf_document |
| 83 | #' @inheritParams rmarkdown::html_document |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 84 | #' |
christophe dervieux | d26add3 | 2021-09-23 16:55:00 +0200 | [diff] [blame] | 85 | #' @param center `TRUE` to vertically center content on slides |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 86 | #' @param slide_level Level of heading to denote individual slides. If |
christophe dervieux | d26add3 | 2021-09-23 16:55:00 +0200 | [diff] [blame] | 87 | #' `slide_level` is 2 (the default), a two-dimensional layout will be |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 88 | #' 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 Allaire | 4c17805 | 2016-01-30 19:35:39 -0500 | [diff] [blame] | 90 | #' section levels with reveal.js. |
Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 91 | #' @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 dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 98 | #' @param reveal_options Additional options to specify for reveal.js (see |
Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 99 | #' <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 Allaire | 35c0b49 | 2017-02-10 09:30:24 -0500 | [diff] [blame] | 102 | #' @param reveal_plugins Reveal plugins to include. Available plugins include |
JJ Allaire | 064552c | 2017-02-10 10:28:41 -0500 | [diff] [blame] | 103 | #' "notes", "search", "zoom", "chalkboard", and "menu". Note that |
christophe dervieux | d26add3 | 2021-09-23 16:55:00 +0200 | [diff] [blame] | 104 | #' `self_contained` must be set to `FALSE` in order to use Reveal |
JJ Allaire | 35c0b49 | 2017-02-10 09:30:24 -0500 | [diff] [blame] | 105 | #' plugins. |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 106 | #' @param template Pandoc template to use for rendering. Pass "default" to use |
christophe dervieux | d26add3 | 2021-09-23 16:55:00 +0200 | [diff] [blame] | 107 | #' the rmarkdown package default template; pass `NULL` to use pandoc's |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 108 | #' built-in template; pass a path to use a custom template that you've |
| 109 | #' created. Note that if you don't use the "default" template then some |
christophe dervieux | d26add3 | 2021-09-23 16:55:00 +0200 | [diff] [blame] | 110 | #' features of `revealjs_presentation` won't be available (see the |
JJ Allaire | 4c17805 | 2016-01-30 19:35:39 -0500 | [diff] [blame] | 111 | #' Templates section below for more details). |
JJ Allaire | 35c0b49 | 2017-02-10 09:30:24 -0500 | [diff] [blame] | 112 | #' @param extra_dependencies Additional function arguments to pass to the base R |
| 113 | #' Markdown HTML output formatter [rmarkdown::html_document_base()]. |
JJ Allaire | 8d1c2f4 | 2016-01-30 14:56:45 -0500 | [diff] [blame] | 114 | #' @param ... Ignored |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 115 | #' |
christophe dervieux | d26add3 | 2021-09-23 16:55:00 +0200 | [diff] [blame] | 116 | #' @return R Markdown output format to pass to [rmarkdown::render()] |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 117 | #' |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 118 | #' @examples |
| 119 | #' \dontrun{ |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 120 | #' |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 121 | #' library(rmarkdown) |
| 122 | #' library(revealjs) |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 123 | #' |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 124 | #' # simple invocation |
| 125 | #' render("pres.Rmd", revealjs_presentation()) |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 126 | #' |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 127 | #' # specify an option for incremental rendering |
| 128 | #' render("pres.Rmd", revealjs_presentation(incremental = TRUE)) |
| 129 | #' } |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 130 | #' |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 131 | #' @export |
| 132 | revealjs_presentation <- function(incremental = FALSE, |
| 133 | center = FALSE, |
JJ Allaire | 4c17805 | 2016-01-30 19:35:39 -0500 | [diff] [blame] | 134 | slide_level = 2, |
Christophe Dervieux | aa008e4 | 2021-09-23 16:52:37 +0200 | [diff] [blame] | 135 | toc = FALSE, |
| 136 | toc_depth = 3, |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 137 | fig_width = 8, |
| 138 | fig_height = 6, |
| 139 | fig_retina = if (!fig_caption) 2, |
| 140 | fig_caption = FALSE, |
Marc Kupietz | f8d5ff1 | 2023-10-09 18:58:09 +0200 | [diff] [blame] | 141 | self_contained = FALSE, |
| 142 | theme = "ids", |
Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 143 | transition = "convex", |
| 144 | background_transition = "fade", |
JJ Allaire | 37f45b7 | 2016-01-30 18:17:45 -0500 | [diff] [blame] | 145 | reveal_options = NULL, |
JJ Allaire | 82a8dee | 2016-07-12 10:25:36 -0400 | [diff] [blame] | 146 | reveal_plugins = NULL, |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 147 | highlight = "default", |
| 148 | mathjax = "default", |
| 149 | template = "default", |
JJ Allaire | fad5523 | 2015-10-19 07:47:26 -0400 | [diff] [blame] | 150 | css = NULL, |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 151 | includes = NULL, |
| 152 | keep_md = FALSE, |
| 153 | lib_dir = NULL, |
| 154 | pandoc_args = NULL, |
JJ Allaire | 375805c | 2016-11-15 08:56:43 -0500 | [diff] [blame] | 155 | extra_dependencies = NULL, |
Atsushi Yasumoto | 0bf4444 | 2020-02-15 00:08:30 +0900 | [diff] [blame] | 156 | md_extensions = NULL, |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 157 | ...) { |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 158 | |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 159 | # base pandoc options for all reveal.js output |
| 160 | args <- c() |
Christophe Dervieux | aa008e4 | 2021-09-23 16:52:37 +0200 | [diff] [blame] | 161 | |
| 162 | # table of contents |
| 163 | args <- c(args, pandoc_toc_args(toc, toc_depth)) |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 164 | |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 165 | # template path and assets |
JJ Allaire | a8c414b | 2016-01-30 14:36:53 -0500 | [diff] [blame] | 166 | if (identical(template, "default")) { |
christophe dervieux | 92fa469 | 2021-09-21 16:15:17 +0200 | [diff] [blame] | 167 | default_template <- reveal_resources("default.html") |
JJ Allaire | a8c414b | 2016-01-30 14:36:53 -0500 | [diff] [blame] | 168 | args <- c(args, "--template", pandoc_path_arg(default_template)) |
| 169 | } else if (!is.null(template)) { |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 170 | args <- c(args, "--template", pandoc_path_arg(template)) |
JJ Allaire | a8c414b | 2016-01-30 14:36:53 -0500 | [diff] [blame] | 171 | } |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 172 | |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 173 | # incremental |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 174 | if (incremental) args <- c(args, "--incremental") |
| 175 | |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 176 | # centering |
JJ Allaire | 40fec33 | 2016-01-30 16:54:51 -0500 | [diff] [blame] | 177 | args <- c(args, pandoc_variable_arg("center", jsbool(center))) |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 178 | |
JJ Allaire | 4c17805 | 2016-01-30 19:35:39 -0500 | [diff] [blame] | 179 | # slide level |
JJ Allaire | c58a6c4 | 2016-03-30 23:45:21 -0400 | [diff] [blame] | 180 | args <- c(args, "--slide-level", as.character(slide_level)) |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 181 | |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 182 | # theme |
| 183 | theme <- match.arg(theme, revealjs_themes()) |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 184 | if (identical(theme, "default")) { |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 185 | theme <- "simple" |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 186 | } else if (identical(theme, "dark")) { |
JJ Allaire | 6da1bb6 | 2016-01-30 14:28:39 -0500 | [diff] [blame] | 187 | theme <- "black" |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 188 | } |
| 189 | if (theme %in% c("blood", "moon", "night", "black")) { |
christophe dervieux | 062940d | 2021-09-21 16:26:14 +0200 | [diff] [blame] | 190 | args <- c(args, pandoc_variable_arg("theme-dark")) |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 191 | } |
christophe dervieux | 1ebd513 | 2021-09-22 08:47:21 +0200 | [diff] [blame] | 192 | args <- c(args, pandoc_variable_arg("theme", theme)) |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 193 | |
Marc Kupietz | 7c8f7de | 2023-10-07 11:42:29 +0200 | [diff] [blame] | 194 | if (theme == "ids") { |
| 195 | args <- c(args, pandoc_variable_arg("theme-ids")) |
| 196 | fig_height = 7 |
| 197 | fig_width = 12 |
| 198 | } |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 199 | |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 200 | # transition |
| 201 | transition <- match.arg(transition, revealjs_transitions()) |
Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 202 | if (identical(transition, "default")) { |
| 203 | # revealjs default is convex |
| 204 | transition <- "convex" |
| 205 | } |
christophe dervieux | 062940d | 2021-09-21 16:26:14 +0200 | [diff] [blame] | 206 | args <- c(args, pandoc_variable_arg("transition", transition)) |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 207 | |
junkka | d55cff0 | 2015-03-15 22:27:03 +0100 | [diff] [blame] | 208 | # background_transition |
| 209 | background_transition <- match.arg(background_transition, revealjs_transitions()) |
Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 210 | if (identical(background_transition, "default")) { |
| 211 | # revealjs default is fade |
| 212 | background_transition <- "fade" |
| 213 | } |
christophe dervieux | 062940d | 2021-09-21 16:26:14 +0200 | [diff] [blame] | 214 | args <- c(args, pandoc_variable_arg("backgroundTransition", background_transition)) |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 215 | |
JJ Allaire | 4ae486f | 2016-03-23 06:08:42 -0400 | [diff] [blame] | 216 | # use history |
| 217 | args <- c(args, pandoc_variable_arg("history", "true")) |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 218 | |
JJ Allaire | 37f45b7 | 2016-01-30 18:17:45 -0500 | [diff] [blame] | 219 | # additional reveal options |
| 220 | if (is.list(reveal_options)) { |
JJ Allaire | 375805c | 2016-11-15 08:56:43 -0500 | [diff] [blame] | 221 | for (option in names(reveal_options)) { |
JJ Allaire | 064552c | 2017-02-10 10:28:41 -0500 | [diff] [blame] | 222 | # special handling for nested options |
| 223 | if (option %in% c("chalkboard", "menu")) { |
| 224 | nested_options <- reveal_options[[option]] |
| 225 | for (nested_option in names(nested_options)) { |
Christophe Dervieux | 2f01dc9 | 2021-09-22 09:37:18 +0200 | [diff] [blame] | 226 | args <- c(args, |
| 227 | process_reveal_option( |
| 228 | paste0(option, "-", nested_option), |
| 229 | nested_options[[nested_option]] |
| 230 | ) |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 231 | ) |
JJ Allaire | 375805c | 2016-11-15 08:56:43 -0500 | [diff] [blame] | 232 | } |
Christophe Dervieux | 2f01dc9 | 2021-09-22 09:37:18 +0200 | [diff] [blame] | 233 | } else { |
| 234 | # standard top-level options |
| 235 | args <- c(args, process_reveal_option(option, reveal_options[[option]])) |
JJ Allaire | 375805c | 2016-11-15 08:56:43 -0500 | [diff] [blame] | 236 | } |
JJ Allaire | 37f45b7 | 2016-01-30 18:17:45 -0500 | [diff] [blame] | 237 | } |
| 238 | } |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 239 | |
JJ Allaire | 82a8dee | 2016-07-12 10:25:36 -0400 | [diff] [blame] | 240 | # reveal plugins |
| 241 | if (is.character(reveal_plugins)) { |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 242 | |
JJ Allaire | 82a8dee | 2016-07-12 10:25:36 -0400 | [diff] [blame] | 243 | # validate that we need to use self_contained for plugins |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 244 | if (self_contained) { |
JJ Allaire | 82a8dee | 2016-07-12 10:25:36 -0400 | [diff] [blame] | 245 | stop("Using reveal_plugins requires self_contained: false") |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 246 | } |
| 247 | |
JJ Allaire | 82a8dee | 2016-07-12 10:25:36 -0400 | [diff] [blame] | 248 | # validate specified plugins are supported |
JJ Allaire | 064552c | 2017-02-10 10:28:41 -0500 | [diff] [blame] | 249 | supported_plugins <- c("notes", "search", "zoom", "chalkboard", "menu") |
JJ Allaire | 82a8dee | 2016-07-12 10:25:36 -0400 | [diff] [blame] | 250 | invalid_plugins <- setdiff(reveal_plugins, supported_plugins) |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 251 | if (length(invalid_plugins) > 0) { |
JJ Allaire | 82a8dee | 2016-07-12 10:25:36 -0400 | [diff] [blame] | 252 | stop("The following plugin(s) are not supported: ", |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 253 | paste(invalid_plugins, collapse = ", "), |
| 254 | call. = FALSE |
| 255 | ) |
| 256 | } |
| 257 | |
JJ Allaire | 82a8dee | 2016-07-12 10:25:36 -0400 | [diff] [blame] | 258 | # add plugins |
Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 259 | if ("chalkboard" %in% reveal_plugins) { |
| 260 | # chalkboard require customcontrols so we add it to activate in the template |
| 261 | reveal_plugins <- c(reveal_plugins, "customcontrols") |
| 262 | } |
JJ Allaire | 82a8dee | 2016-07-12 10:25:36 -0400 | [diff] [blame] | 263 | sapply(reveal_plugins, function(plugin) { |
Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 264 | args <<- c(args, pandoc_variable_arg(paste0("plugin-", plugin))) |
| 265 | if (plugin %in% c("customcontrols", "menu")) { |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 266 | extra_dependencies <<- append( |
| 267 | extra_dependencies, |
| 268 | list(rmarkdown::html_dependency_font_awesome()) |
| 269 | ) |
JJ Allaire | 375805c | 2016-11-15 08:56:43 -0500 | [diff] [blame] | 270 | } |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 271 | }) |
JJ Allaire | 82a8dee | 2016-07-12 10:25:36 -0400 | [diff] [blame] | 272 | } |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 273 | |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 274 | # content includes |
| 275 | args <- c(args, includes_to_pandoc_args(includes)) |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 276 | |
JJ Allaire | fad5523 | 2015-10-19 07:47:26 -0400 | [diff] [blame] | 277 | # additional css |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 278 | for (css_file in css) { |
JJ Allaire | fad5523 | 2015-10-19 07:47:26 -0400 | [diff] [blame] | 279 | args <- c(args, "--css", pandoc_path_arg(css_file)) |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 280 | } |
| 281 | |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 282 | # pre-processor for arguments that may depend on the name of the |
| 283 | # the input file (e.g. ones that need to copy supporting files) |
| 284 | pre_processor <- function(metadata, input_file, runtime, knit_meta, files_dir, |
| 285 | output_dir) { |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 286 | |
JJ Allaire | e60feb2 | 2016-01-30 18:28:47 -0500 | [diff] [blame] | 287 | # we don't work with runtime shiny |
| 288 | if (identical(runtime, "shiny")) { |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 289 | stop("revealjs_presentation is not compatible with runtime 'shiny'", |
| 290 | call. = FALSE |
| 291 | ) |
JJ Allaire | e60feb2 | 2016-01-30 18:28:47 -0500 | [diff] [blame] | 292 | } |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 293 | |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 294 | # use files_dir as lib_dir if not explicitly specified |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 295 | if (is.null(lib_dir)) { |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 296 | lib_dir <- files_dir |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 297 | } |
| 298 | |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 299 | # extra args |
| 300 | args <- c() |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 301 | |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 302 | # reveal.js |
Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 303 | revealjs_path <- revealjs_lib_path() |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 304 | if (!self_contained || identical(.Platform$OS.type, "windows")) { |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 305 | revealjs_path <- relative_to( |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 306 | output_dir, render_supporting_files(revealjs_path, lib_dir) |
| 307 | ) |
| 308 | } else { |
JJ Allaire | eea3bca | 2016-07-13 12:42:01 -0400 | [diff] [blame] | 309 | revealjs_path <- pandoc_path_arg(revealjs_path) |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 310 | } |
christophe dervieux | 062940d | 2021-09-21 16:26:14 +0200 | [diff] [blame] | 311 | args <- c(args, pandoc_variable_arg("revealjs-url", revealjs_path)) |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 312 | |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 313 | # highlight |
| 314 | args <- c(args, pandoc_highlight_args(highlight, default = "pygments")) |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 315 | |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 316 | # return additional args |
| 317 | args |
| 318 | } |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 319 | |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 320 | # return format |
| 321 | output_format( |
| 322 | knitr = knitr_options_html(fig_width, fig_height, fig_retina, keep_md), |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 323 | pandoc = pandoc_options( |
| 324 | to = "revealjs", |
christophe dervieux | ad3a575 | 2021-09-23 10:24:09 +0200 | [diff] [blame] | 325 | from = from_rmarkdown(fig_caption, md_extensions), |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 326 | args = args |
| 327 | ), |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 328 | keep_md = keep_md, |
| 329 | clean_supporting = self_contained, |
| 330 | pre_processor = pre_processor, |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 331 | base_format = html_document_base( |
christophe dervieux | 0acc6c9 | 2021-09-23 11:18:18 +0200 | [diff] [blame] | 332 | lib_dir = lib_dir, |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 333 | self_contained = self_contained, |
| 334 | mathjax = mathjax, |
| 335 | pandoc_args = pandoc_args, |
| 336 | extra_dependencies = extra_dependencies, |
| 337 | ... |
| 338 | ) |
| 339 | ) |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 340 | } |
| 341 | |
| 342 | revealjs_themes <- function() { |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 343 | c( |
Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 344 | "default", # not used by reveal |
Marc Kupietz | a737b1b | 2023-10-07 09:32:20 +0200 | [diff] [blame] | 345 | "ids", |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 346 | "simple", |
Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 347 | "dark", # our alias for black |
| 348 | "black", |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 349 | "sky", |
| 350 | "beige", |
| 351 | "serif", |
| 352 | "solarized", |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 353 | "blood", |
| 354 | "moon", |
junkka | 77fbf08 | 2015-03-15 22:25:47 +0100 | [diff] [blame] | 355 | "night", |
junkka | 77fbf08 | 2015-03-15 22:25:47 +0100 | [diff] [blame] | 356 | "league", |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 357 | "white" |
| 358 | ) |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 359 | } |
| 360 | |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 361 | revealjs_transitions <- function() { |
junkka | 77fbf08 | 2015-03-15 22:25:47 +0100 | [diff] [blame] | 362 | c( |
Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 363 | "default", # not used by reveal |
| 364 | "convex", |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 365 | "fade", |
junkka | 77fbf08 | 2015-03-15 22:25:47 +0100 | [diff] [blame] | 366 | "slide", |
junkka | 77fbf08 | 2015-03-15 22:25:47 +0100 | [diff] [blame] | 367 | "concave", |
Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 368 | "zoom", |
| 369 | "none" |
christophe dervieux | f9bae67 | 2021-09-21 16:20:24 +0200 | [diff] [blame] | 370 | ) |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 371 | } |