aboutsummaryrefslogtreecommitdiff
path: root/default.revealjs
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-10-25 12:18:14 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2015-10-25 12:18:14 -0700
commitde2e524e7df0a9d4159f2794deaa2e1847c87d46 (patch)
tree0626551dd8f8ec9ba7ab2b9f7e89697834308ba5 /default.revealjs
parent2d4df824cd1af46f63cb6aeaa1deb40344b5552b (diff)
parent400dadd4445e949a0fcd96274bd3b4ef24864244 (diff)
downloadpandoc-de2e524e7df0a9d4159f2794deaa2e1847c87d46.tar.gz
Merge pull request #144 from adunning/html-keywords
Add keywords to HTML templates; realign.
Diffstat (limited to 'default.revealjs')
-rw-r--r--default.revealjs16
1 files changed, 12 insertions, 4 deletions
diff --git a/default.revealjs b/default.revealjs
index f2439b984..48f5eec41 100644
--- a/default.revealjs
+++ b/default.revealjs
@@ -9,12 +9,18 @@ $endfor$
$if(date-meta)$
<meta name="dcterms.date" content="$date-meta$">
$endif$
+$if(keywords)$
+ <meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$">
+$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, minimal-ui">
- <link rel="stylesheet" href="$revealjs-url$/css/reveal.css"/>
+ <link rel="stylesheet" href="$revealjs-url$/css/reveal.css">
<style type="text/css">code{white-space: pre;}</style>
+$if(quotes)$
+ <style type="text/css">q { quotes: "“" "”" "‘" "’"; }</style>
+$endif$
$if(highlighting-css)$
<style type="text/css">
$highlighting-css$
@@ -55,14 +61,16 @@ $endfor$
$if(title)$
<section>
- <h1 class="title">$title$</h1>
+ <h1 class="title">$title$</h1>
$if(subtitle)$
<h1 class="subtitle">$subtitle$</h1>
$endif$
$for(author)$
- <h2 class="author">$author$</h2>
+ <h2 class="author">$author$</h2>
$endfor$
- <h3 class="date">$date$</h3>
+$if(date)$
+ <h3 class="date">$date$</h3>
+$endif$
</section>
$endif$
$if(toc)$