diff options
author | Andrew Dunning <andunning@gmail.com> | 2015-10-22 18:01:27 -0400 |
---|---|---|
committer | Andrew Dunning <andunning@gmail.com> | 2015-10-22 18:01:27 -0400 |
commit | f92d725b0516b8bb728525dcd76c3b9ae54f5e3f (patch) | |
tree | 0c43d278e535ec60d1040f18488fea54a4ab110e /default.html | |
parent | 06fe6706f1b0655185248cc0c1ee3d2e187ec07d (diff) | |
download | pandoc-f92d725b0516b8bb728525dcd76c3b9ae54f5e3f.tar.gz |
Add keywords to HTML templates.
Diffstat (limited to 'default.html')
-rw-r--r-- | default.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/default.html b/default.html index 0a20a7be8..3058eec93 100644 --- a/default.html +++ b/default.html @@ -10,6 +10,9 @@ $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)$ |