blob: f681e24f62d81fb869c62fac199c0ffb11749057 [file] [log] [blame]
christophe dervieux92fa4692021-09-21 16:15:17 +02001# function to lookup reveal resource
2reveal_resources <- function(...) {
3 system.file("rmarkdown/templates/revealjs_presentation/resources",
4 ...,
5 package = "revealjs")
christophe dervieux24418a82021-09-21 16:17:18 +02006}
7
8# Convert boolean from R to JS boolean
9jsbool <- function(value) ifelse(value, "true", "false")