blob: f681e24f62d81fb869c62fac199c0ffb11749057 [file] [log] [blame]
# function to lookup reveal resource
reveal_resources <- function(...) {
system.file("rmarkdown/templates/revealjs_presentation/resources",
...,
package = "revealjs")
}
# Convert boolean from R to JS boolean
jsbool <- function(value) ifelse(value, "true", "false")