Remove smart argument as it is no more present in `html_document_base()`
Following https://github.com/rstudio/rmarkdown/issues/1774 as Pandoc sets it by default.
Closes #107
diff --git a/R/revealjs_presentation.R b/R/revealjs_presentation.R
index 542df58..12edafc 100644
--- a/R/revealjs_presentation.R
+++ b/R/revealjs_presentation.R
@@ -6,9 +6,6 @@
#' @inheritParams rmarkdown::pdf_document
#' @inheritParams rmarkdown::html_document
#'
-#' @param smart Produce typographically correct output, converting straight
-#' quotes to curly quotes, \code{---} to em-dashes, \code{--} to en-dashes, and
-#' \code{...} to ellipses.
#' @param center \code{TRUE} to vertically center content on slides
#' @param slide_level Level of heading to denote individual slides. If
#' \code{slide_level} is 2 (the default), a two-dimensional layout will be
@@ -71,7 +68,6 @@
fig_height = 6,
fig_retina = if (!fig_caption) 2,
fig_caption = FALSE,
- smart = TRUE,
self_contained = TRUE,
theme = "simple",
transition = "default",
@@ -243,7 +239,7 @@
clean_supporting = self_contained,
pre_processor = pre_processor,
base_format = html_document_base(
- smart = smart, lib_dir = lib_dir,
+ lib_dir = lib_dir,
self_contained = self_contained,
mathjax = mathjax,
pandoc_args = pandoc_args,