ability to specify slideNumber reveal_option as either string or boolean
diff --git a/R/revealjs_presentation.R b/R/revealjs_presentation.R
index 99174c7..1ad46fc 100644
--- a/R/revealjs_presentation.R
+++ b/R/revealjs_presentation.R
@@ -142,6 +142,8 @@
       value <- reveal_options[[option]]
       if (is.logical(value))
         value <- jsbool(value)
+      else if (is.character(value))
+        value <- paste0("'", value, "'")
       args <- c(args, pandoc_variable_arg(option, value))
     }
   }