move embedded reveal into it's own directory
diff --git a/.Rbuildignore b/.Rbuildignore
index 069e96d..333d2c4 100644
--- a/.Rbuildignore
+++ b/.Rbuildignore
@@ -1,4 +1,6 @@
^.*\.Rproj$
^\.Rproj\.user$
README.md
+examples/
+
diff --git a/R/revealjs_presentation.R b/R/revealjs_presentation.R
index 82691b2..6f8d74b 100644
--- a/R/revealjs_presentation.R
+++ b/R/revealjs_presentation.R
@@ -95,7 +95,7 @@
# function to lookup reveal resource
reveal_resources <- function() {
- system.file("rmarkdown/templates/revealjs_presentation",
+ system.file("rmarkdown/templates/revealjs_presentation/resources",
package = "revealjs")
}
@@ -156,7 +156,7 @@
args <- c()
# reveal.js
- revealjs_path <- reveal_resources()
+ revealjs_path <- file.path(reveal_resources(), "reveal-3.0.0")
if (!self_contained || identical(.Platform$OS.type, "windows"))
revealjs_path <- relative_to(
output_dir, render_supporting_files(revealjs_path, lib_dir))
diff --git a/examples/.gitignore b/examples/.gitignore
new file mode 100644
index 0000000..d56b24c
--- /dev/null
+++ b/examples/.gitignore
@@ -0,0 +1,2 @@
+*.html
+*_files
diff --git a/examples/simple.Rmd b/examples/simple.Rmd
new file mode 100644
index 0000000..309f0f5
--- /dev/null
+++ b/examples/simple.Rmd
@@ -0,0 +1,35 @@
+---
+title: "Untitled"
+output:
+ revealjs::revealjs_presentation:
+ self_contained: false
+---
+
+```{r setup, include=FALSE}
+knitr::opts_chunk$set(echo = FALSE)
+```
+
+## R Markdown
+
+This is an R Markdown presentation. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.
+
+When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document.
+
+## Slide with Bullets
+
+- Bullet 1
+- Bullet 2
+- Bullet 3
+
+## Slide with R Output
+
+```{r cars, echo = TRUE}
+summary(cars)
+```
+
+## Slide with Plot
+
+```{r pressure}
+plot(pressure)
+```
+
diff --git a/inst/rmarkdown/templates/revealjs_presentation/default.html b/inst/rmarkdown/templates/revealjs_presentation/resources/default.html
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/default.html
rename to inst/rmarkdown/templates/revealjs_presentation/resources/default.html
diff --git a/inst/rmarkdown/templates/revealjs_presentation/.gitignore b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/.gitignore
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/.gitignore
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/.gitignore
diff --git a/inst/rmarkdown/templates/revealjs_presentation/Gruntfile.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/Gruntfile.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/Gruntfile.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/Gruntfile.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/LICENSE b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/LICENSE
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/LICENSE
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/LICENSE
diff --git a/inst/rmarkdown/templates/revealjs_presentation/README.md b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/README.md
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/README.md
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/README.md
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/print/paper.css b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/print/paper.css
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/print/paper.css
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/print/paper.css
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/print/pdf.css b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/print/pdf.css
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/print/pdf.css
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/print/pdf.css
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/reveal.css b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/reveal.css
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/reveal.css
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/reveal.css
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/reveal.min.css b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/reveal.min.css
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/reveal.min.css
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/reveal.min.css
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/reveal.scss b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/reveal.scss
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/reveal.scss
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/reveal.scss
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/README.md b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/README.md
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/README.md
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/README.md
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/beige.css b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/beige.css
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/beige.css
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/beige.css
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/black.css b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/black.css
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/black.css
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/black.css
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/blood.css b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/blood.css
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/blood.css
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/blood.css
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/default.css b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/default.css
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/default.css
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/default.css
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/Lato.ttf b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/Lato.ttf
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/Lato.ttf
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/Lato.ttf
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/LatoBold.ttf b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/LatoBold.ttf
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/LatoBold.ttf
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/LatoBold.ttf
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/LatoBoldItalic.ttf b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/LatoBoldItalic.ttf
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/LatoBoldItalic.ttf
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/LatoBoldItalic.ttf
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/LatoItalic.ttf b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/LatoItalic.ttf
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/LatoItalic.ttf
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/LatoItalic.ttf
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/Montserrat.ttf b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/Montserrat.ttf
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/Montserrat.ttf
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/Montserrat.ttf
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/NewsCycle.ttf b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/NewsCycle.ttf
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/NewsCycle.ttf
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/NewsCycle.ttf
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/NewsCycleBold.ttf b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/NewsCycleBold.ttf
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/NewsCycleBold.ttf
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/NewsCycleBold.ttf
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/OpenSans.ttf b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/OpenSans.ttf
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/OpenSans.ttf
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/OpenSans.ttf
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/OpenSansBold.ttf b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/OpenSansBold.ttf
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/OpenSansBold.ttf
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/OpenSansBold.ttf
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/OpenSansBoldItalic.ttf b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/OpenSansBoldItalic.ttf
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/OpenSansBoldItalic.ttf
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/OpenSansBoldItalic.ttf
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/OpenSansItalic.ttf b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/OpenSansItalic.ttf
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/OpenSansItalic.ttf
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/OpenSansItalic.ttf
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/Quicksand.ttf b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/Quicksand.ttf
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/Quicksand.ttf
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/Quicksand.ttf
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/QuicksandBold.ttf b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/QuicksandBold.ttf
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/QuicksandBold.ttf
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/QuicksandBold.ttf
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/UbuntuBold.ttf b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/UbuntuBold.ttf
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/UbuntuBold.ttf
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/UbuntuBold.ttf
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/UbuntuBoldItalic.ttf b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/UbuntuBoldItalic.ttf
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/UbuntuBoldItalic.ttf
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/UbuntuBoldItalic.ttf
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/UbuntuLight.ttf b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/UbuntuLight.ttf
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/UbuntuLight.ttf
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/UbuntuLight.ttf
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/UbuntuLightItalic.ttf b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/UbuntuLightItalic.ttf
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/fonts/UbuntuLightItalic.ttf
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/fonts/UbuntuLightItalic.ttf
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/league.css b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/league.css
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/league.css
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/league.css
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/moon.css b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/moon.css
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/moon.css
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/moon.css
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/night.css b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/night.css
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/night.css
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/night.css
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/serif.css b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/serif.css
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/serif.css
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/serif.css
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/simple.css b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/simple.css
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/simple.css
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/simple.css
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/sky.css b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/sky.css
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/sky.css
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/sky.css
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/solarized.css b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/solarized.css
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/solarized.css
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/solarized.css
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/source/beige.scss b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/source/beige.scss
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/source/beige.scss
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/source/beige.scss
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/source/black.scss b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/source/black.scss
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/source/black.scss
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/source/black.scss
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/source/blood.scss b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/source/blood.scss
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/source/blood.scss
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/source/blood.scss
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/source/default.scss b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/source/default.scss
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/source/default.scss
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/source/default.scss
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/source/league.scss b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/source/league.scss
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/source/league.scss
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/source/league.scss
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/source/moon.scss b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/source/moon.scss
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/source/moon.scss
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/source/moon.scss
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/source/night.scss b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/source/night.scss
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/source/night.scss
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/source/night.scss
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/source/serif.scss b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/source/serif.scss
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/source/serif.scss
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/source/serif.scss
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/source/simple.scss b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/source/simple.scss
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/source/simple.scss
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/source/simple.scss
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/source/sky.scss b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/source/sky.scss
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/source/sky.scss
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/source/sky.scss
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/source/solarized.scss b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/source/solarized.scss
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/source/solarized.scss
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/source/solarized.scss
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/source/white.scss b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/source/white.scss
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/source/white.scss
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/source/white.scss
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/template/mixins.scss b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/template/mixins.scss
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/template/mixins.scss
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/template/mixins.scss
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/template/settings.scss b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/template/settings.scss
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/template/settings.scss
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/template/settings.scss
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/template/theme.scss b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/template/theme.scss
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/template/theme.scss
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/template/theme.scss
diff --git a/inst/rmarkdown/templates/revealjs_presentation/css/theme/white.css b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/white.css
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/css/theme/white.css
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/css/theme/white.css
diff --git a/inst/rmarkdown/templates/revealjs_presentation/index.html b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/index.html
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/index.html
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/index.html
diff --git a/inst/rmarkdown/templates/revealjs_presentation/js/reveal.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/js/reveal.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/js/reveal.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/js/reveal.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/js/reveal.min.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/js/reveal.min.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/js/reveal.min.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/js/reveal.min.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/css/zenburn.css b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/css/zenburn.css
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/css/zenburn.css
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/css/zenburn.css
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/font/league-gothic/LICENSE b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/league-gothic/LICENSE
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/font/league-gothic/LICENSE
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/league-gothic/LICENSE
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/font/league-gothic/league-gothic.css b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/league-gothic/league-gothic.css
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/font/league-gothic/league-gothic.css
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/league-gothic/league-gothic.css
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/font/league-gothic/league-gothic.eot b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/league-gothic/league-gothic.eot
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/font/league-gothic/league-gothic.eot
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/league-gothic/league-gothic.eot
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/font/league-gothic/league-gothic.ttf b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/league-gothic/league-gothic.ttf
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/font/league-gothic/league-gothic.ttf
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/league-gothic/league-gothic.ttf
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/font/league-gothic/league-gothic.woff b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/league-gothic/league-gothic.woff
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/font/league-gothic/league-gothic.woff
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/league-gothic/league-gothic.woff
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/font/league_gothic-webfont.eot b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/league_gothic-webfont.eot
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/font/league_gothic-webfont.eot
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/league_gothic-webfont.eot
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/font/league_gothic-webfont.svg b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/league_gothic-webfont.svg
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/font/league_gothic-webfont.svg
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/league_gothic-webfont.svg
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/font/league_gothic-webfont.ttf b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/league_gothic-webfont.ttf
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/font/league_gothic-webfont.ttf
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/league_gothic-webfont.ttf
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/font/league_gothic-webfont.woff b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/league_gothic-webfont.woff
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/font/league_gothic-webfont.woff
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/league_gothic-webfont.woff
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/font/league_gothic_license b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/league_gothic_license
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/font/league_gothic_license
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/league_gothic_license
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/LICENSE b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/LICENSE
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/LICENSE
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/LICENSE
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro-italic.eot b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro-italic.eot
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro-italic.eot
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro-italic.eot
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro-italic.ttf b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro-italic.ttf
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro-italic.ttf
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro-italic.ttf
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro-italic.woff b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro-italic.woff
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro-italic.woff
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro-italic.woff
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro-regular.eot b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro-regular.eot
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro-regular.eot
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro-regular.eot
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro-regular.ttf b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro-regular.ttf
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro-regular.ttf
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro-regular.ttf
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro-regular.woff b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro-regular.woff
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro-regular.woff
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro-regular.woff
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro-semibold.eot b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro-semibold.eot
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro-semibold.eot
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro-semibold.eot
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro-semibold.ttf b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro-semibold.ttf
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro-semibold.ttf
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro-semibold.ttf
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro-semibold.woff b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro-semibold.woff
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro-semibold.woff
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro-semibold.woff
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro.css b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro.css
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/font/source-sans-pro/source-sans-pro.css
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/font/source-sans-pro/source-sans-pro.css
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/js/classList.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/js/classList.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/js/classList.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/js/classList.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/js/head.min.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/js/head.min.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/js/head.min.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/js/head.min.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/lib/js/html5shiv.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/js/html5shiv.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/lib/js/html5shiv.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/lib/js/html5shiv.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/package.json b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/package.json
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/package.json
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/package.json
diff --git a/inst/rmarkdown/templates/revealjs_presentation/plugin/highlight/highlight.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/highlight/highlight.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/plugin/highlight/highlight.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/highlight/highlight.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/plugin/leap/leap.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/leap/leap.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/plugin/leap/leap.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/leap/leap.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/plugin/markdown/example.html b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/markdown/example.html
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/plugin/markdown/example.html
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/markdown/example.html
diff --git a/inst/rmarkdown/templates/revealjs_presentation/plugin/markdown/example.md b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/markdown/example.md
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/plugin/markdown/example.md
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/markdown/example.md
diff --git a/inst/rmarkdown/templates/revealjs_presentation/plugin/markdown/markdown.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/markdown/markdown.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/plugin/markdown/markdown.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/markdown/markdown.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/plugin/markdown/marked.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/markdown/marked.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/plugin/markdown/marked.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/markdown/marked.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/plugin/math/math.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/math/math.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/plugin/math/math.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/math/math.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/plugin/multiplex/client.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/multiplex/client.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/plugin/multiplex/client.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/multiplex/client.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/plugin/multiplex/index.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/multiplex/index.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/plugin/multiplex/index.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/multiplex/index.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/plugin/multiplex/master.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/multiplex/master.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/plugin/multiplex/master.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/multiplex/master.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/plugin/notes-server/client.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/notes-server/client.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/plugin/notes-server/client.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/notes-server/client.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/plugin/notes-server/index.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/notes-server/index.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/plugin/notes-server/index.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/notes-server/index.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/plugin/notes-server/notes.html b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/notes-server/notes.html
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/plugin/notes-server/notes.html
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/notes-server/notes.html
diff --git a/inst/rmarkdown/templates/revealjs_presentation/plugin/notes/notes.html b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/notes/notes.html
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/plugin/notes/notes.html
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/notes/notes.html
diff --git a/inst/rmarkdown/templates/revealjs_presentation/plugin/notes/notes.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/notes/notes.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/plugin/notes/notes.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/notes/notes.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/plugin/postmessage/example.html b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/postmessage/example.html
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/plugin/postmessage/example.html
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/postmessage/example.html
diff --git a/inst/rmarkdown/templates/revealjs_presentation/plugin/postmessage/postmessage.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/postmessage/postmessage.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/plugin/postmessage/postmessage.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/postmessage/postmessage.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/plugin/print-pdf/print-pdf.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/print-pdf/print-pdf.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/plugin/print-pdf/print-pdf.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/print-pdf/print-pdf.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/plugin/remotes/remotes.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/remotes/remotes.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/plugin/remotes/remotes.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/remotes/remotes.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/plugin/search/search.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/search/search.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/plugin/search/search.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/search/search.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/plugin/zoom-js/zoom.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/zoom-js/zoom.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/plugin/zoom-js/zoom.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/plugin/zoom-js/zoom.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/test/examples/assets/image1.png b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/examples/assets/image1.png
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/test/examples/assets/image1.png
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/examples/assets/image1.png
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/test/examples/assets/image2.png b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/examples/assets/image2.png
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/test/examples/assets/image2.png
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/examples/assets/image2.png
Binary files differ
diff --git a/inst/rmarkdown/templates/revealjs_presentation/test/examples/barebones.html b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/examples/barebones.html
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/test/examples/barebones.html
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/examples/barebones.html
diff --git a/inst/rmarkdown/templates/revealjs_presentation/test/examples/embedded-media.html b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/examples/embedded-media.html
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/test/examples/embedded-media.html
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/examples/embedded-media.html
diff --git a/inst/rmarkdown/templates/revealjs_presentation/test/examples/math.html b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/examples/math.html
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/test/examples/math.html
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/examples/math.html
diff --git a/inst/rmarkdown/templates/revealjs_presentation/test/examples/slide-backgrounds.html b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/examples/slide-backgrounds.html
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/test/examples/slide-backgrounds.html
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/examples/slide-backgrounds.html
diff --git a/inst/rmarkdown/templates/revealjs_presentation/test/qunit-1.12.0.css b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/qunit-1.12.0.css
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/test/qunit-1.12.0.css
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/qunit-1.12.0.css
diff --git a/inst/rmarkdown/templates/revealjs_presentation/test/qunit-1.12.0.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/qunit-1.12.0.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/test/qunit-1.12.0.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/qunit-1.12.0.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/test/test-markdown-element-attributes.html b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/test-markdown-element-attributes.html
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/test/test-markdown-element-attributes.html
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/test-markdown-element-attributes.html
diff --git a/inst/rmarkdown/templates/revealjs_presentation/test/test-markdown-element-attributes.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/test-markdown-element-attributes.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/test/test-markdown-element-attributes.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/test-markdown-element-attributes.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/test/test-markdown-slide-attributes.html b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/test-markdown-slide-attributes.html
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/test/test-markdown-slide-attributes.html
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/test-markdown-slide-attributes.html
diff --git a/inst/rmarkdown/templates/revealjs_presentation/test/test-markdown-slide-attributes.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/test-markdown-slide-attributes.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/test/test-markdown-slide-attributes.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/test-markdown-slide-attributes.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/test/test-markdown.html b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/test-markdown.html
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/test/test-markdown.html
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/test-markdown.html
diff --git a/inst/rmarkdown/templates/revealjs_presentation/test/test-markdown.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/test-markdown.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/test/test-markdown.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/test-markdown.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/test/test-pdf.html b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/test-pdf.html
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/test/test-pdf.html
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/test-pdf.html
diff --git a/inst/rmarkdown/templates/revealjs_presentation/test/test-pdf.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/test-pdf.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/test/test-pdf.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/test-pdf.js
diff --git a/inst/rmarkdown/templates/revealjs_presentation/test/test.html b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/test.html
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/test/test.html
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/test.html
diff --git a/inst/rmarkdown/templates/revealjs_presentation/test/test.js b/inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/test.js
similarity index 100%
rename from inst/rmarkdown/templates/revealjs_presentation/test/test.js
rename to inst/rmarkdown/templates/revealjs_presentation/resources/reveal-3.0.0/test/test.js