diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2011-11-29 13:30:41 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2011-11-29 13:30:41 -0800 |
commit | 5facbc552da097dd150112457866a7785cfb21d4 (patch) | |
tree | a3305d7db2eb1fc6663b381597cb86e0f6272f62 /default.html | |
parent | 6c48030dcd70359e5f9c2eeef8cb01873ac033a6 (diff) | |
download | pandoc-5facbc552da097dd150112457866a7785cfb21d4.tar.gz |
HTML-based templates: use separate variables for meta-date, meta-author.
Diffstat (limited to 'default.html')
-rw-r--r-- | default.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/default.html b/default.html index aeba421e7..8c638bfc4 100644 --- a/default.html +++ b/default.html @@ -13,11 +13,11 @@ $else$ <meta http-equiv="Content-Style-Type" content="text/css" /> $endif$ <meta name="generator" content="pandoc" /> -$for(author)$ - <meta name="author" content="$author$" /> +$for(author-meta)$ + <meta name="author" content="$author-meta$" /> $endfor$ -$if(date)$ - <meta name="date" content="$date$" /> +$if(date-meta)$ + <meta name="date" content="$date-meta$" /> $endif$ <title>$if(title-prefix)$$title-prefix$ - $endif$$if(pagetitle)$$pagetitle$$endif$</title> $if(html5)$ |