diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2015-10-25 12:18:14 -0700 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2015-10-25 12:18:14 -0700 |
| commit | de2e524e7df0a9d4159f2794deaa2e1847c87d46 (patch) | |
| tree | 0626551dd8f8ec9ba7ab2b9f7e89697834308ba5 /default.html | |
| parent | 2d4df824cd1af46f63cb6aeaa1deb40344b5552b (diff) | |
| parent | 400dadd4445e949a0fcd96274bd3b4ef24864244 (diff) | |
| download | pandoc-de2e524e7df0a9d4159f2794deaa2e1847c87d46.tar.gz | |
Merge pull request #144 from adunning/html-keywords
Add keywords to HTML templates; realign.
Diffstat (limited to 'default.html')
| -rw-r--r-- | default.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/default.html b/default.html index 0a20a7be8..8caea26c8 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)$ @@ -21,7 +24,7 @@ $highlighting-css$ </style> $endif$ $for(css)$ - <link rel="stylesheet" href="$css$" $if(html5)$$else$type="text/css" $endif$/> + <link rel="stylesheet" href="$css$" type="text/css" /> $endfor$ $if(math)$ $math$ |
