aboutsummaryrefslogtreecommitdiff
path: root/default.slideous
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.slideous
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.slideous')
-rw-r--r--default.slideous8
1 files changed, 7 insertions, 1 deletions
diff --git a/default.slideous b/default.slideous
index 275e54f30..c35e7432c 100644
--- a/default.slideous
+++ b/default.slideous
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml"$if(lang)$ lang="$lang$" xml:lang="$lang$"$endif$>
+<html xmlns="http://www.w3.org/1999/xhtml"$if(lang)$ lang="$lang$" xml:lang="$lang$"$endif$$if(dir)$ dir="$dir$"$endif$>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
@@ -12,8 +12,14 @@ $endfor$
$if(date-meta)$
<meta name="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>
<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$