initial commit
diff --git a/inst/rmarkdown/templates/revealjs_presentation/default.html b/inst/rmarkdown/templates/revealjs_presentation/default.html
new file mode 100644
index 0000000..f1a473f
--- /dev/null
+++ b/inst/rmarkdown/templates/revealjs_presentation/default.html
@@ -0,0 +1,180 @@
+<!DOCTYPE html>
+<html$if(lang)$ lang="$lang$"$endif$>
+<head>
+ <meta charset="utf-8">
+ <meta name="generator" content="pandoc">
+$for(author-meta)$
+ <meta name="author" content="$author-meta$" />
+$endfor$
+$if(date-meta)$
+ <meta name="dcterms.date" content="$date-meta$" />
+$endif$
+ <title>$if(title-prefix)$$title-prefix$ - $endif$$pagetitle$</title>
+ <meta name="apple-mobile-web-app-capable" content="yes" />
+ <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
+ <link rel="stylesheet" href="$revealjs-url$/css/reveal.min.css"/>
+
+ <!-- some tweaks to reveal css -->
+ <style type="text/css">
+ .reveal h1 { font-size: 2.0em; }
+ .reveal h2 { font-size: 1.5em; }
+ .reveal h3 { font-size: 1.25em; }
+ .reveal h4 { font-size: 1em; }
+
+ .reveal .slides>section,
+ .reveal .slides>section>section {
+ padding: 0px 0px;
+ }
+
+$if(center)$
+
+$else$
+ .reveal .title {
+ margin-top: 125px;
+ margin-bottom: 50px;
+ }
+$endif$
+
+ .reveal table {
+ border-width: 1px;
+ border-spacing: 2px;
+ border-style: dotted;
+ border-color: gray;
+ border-collapse: collapse;
+ font-size: 0.7em;
+ }
+
+ .reveal table th {
+ border-width: 1px;
+ padding-left: 10px;
+ padding-right: 25px;
+ font-weight: bold;
+ border-style: dotted;
+ border-color: gray;
+ }
+
+ .reveal table td {
+ border-width: 1px;
+ padding-left: 10px;
+ padding-right: 25px;
+ border-style: dotted;
+ border-color: gray;
+ }
+
+ </style>
+
+ <style type="text/css">code{white-space: pre;}</style>
+
+$if(highlightjs)$
+<link rel="stylesheet"
+ href="$highlightjs$/$if(highlightjs-theme)$$highlightjs-theme$$else$default$endif$.css"
+ $if(html5)$$else$type="text/css" $endif$/>
+<script src="$highlightjs$/highlight.js"></script>
+$endif$
+
+$if(highlighting-css)$
+<style type="text/css">
+$highlighting-css$
+</style>
+$endif$
+
+$if(theme)$
+<link rel="stylesheet" href="$revealjs-url$/css/theme/$theme$.css" id="theme">
+$endif$
+
+$if(theme-dark)$
+<style type="text/css">
+.reveal section img {
+ background: rgba(255, 255, 255, 0.85);
+}
+</style>
+$endif$
+
+$if(css)$
+$for(css)$
+ <link rel="stylesheet" href="$css$"/>
+$endfor$
+$endif$
+ <!-- If the query includes 'print-pdf', include the PDF print sheet -->
+ <script>
+ if( window.location.search.match( /print-pdf/gi ) ) {
+ var link = document.createElement( 'link' );
+ link.rel = 'stylesheet';
+ link.type = 'text/css';
+ link.href = '$revealjs-url$/css/print/pdf.css';
+ document.getElementsByTagName( 'head' )[0].appendChild( link );
+ }
+ </script>
+ <!--[if lt IE 9]>
+ <script src="$revealjs-url$/lib/js/html5shiv.js"></script>
+ <![endif]-->
+
+$for(header-includes)$
+ $header-includes$
+$endfor$
+</head>
+<body>
+$for(include-before)$
+$include-before$
+$endfor$
+ <div class="reveal">
+ <div class="slides">
+
+$if(title)$
+<section>
+ <h1 class="title">$title$</h1>
+$if(subtitle)$
+ <h1 class="subtitle">$subtitle$</h1>
+$endif$
+$for(author)$
+ <h2 class="author">$author$</h2>
+$endfor$
+ <h3 class="date">$date$</h3>
+</section>
+$endif$
+$if(toc)$
+<section id="$idprefix$TOC">
+$toc$
+</section>
+$endif$
+
+$body$
+ </div>
+ </div>
+$for(include-after)$
+$include-after$
+$endfor$
+
+ <script src="$revealjs-url$/lib/js/head.min.js"></script>
+ <script src="$revealjs-url$/js/reveal.min.js"></script>
+
+ <script>
+
+ // Full list of configuration options available here:
+ // https://github.com/hakimel/reveal.js#configuration
+ Reveal.initialize({
+ controls: true,
+ progress: true,
+ history: true,
+ center: $if(center)$true$else$false$endif$,
+ transition: '$transition$',
+
+ // Optional libraries used to extend on reveal.js
+ dependencies: []});
+ </script>
+
+$if(mathjax-url)$
+ <!-- dynamically load mathjax for compatibility with self-contained -->
+ <script>
+ (function () {
+ var script = document.createElement("script");
+ script.type = "text/javascript";
+ script.src = "$mathjax-url$";
+ document.getElementsByTagName("head")[0].appendChild(script);
+ })();
+ </script>
+$endif$
+
+ </body>
+</html>