diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2012-01-28 16:12:10 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2012-01-28 16:12:10 -0800 |
commit | 438c5c3ea863b5a1b63d3280e8667e14ee3cc7d2 (patch) | |
tree | dc659318eb4d32c8970abadff34ec720238db9a6 | |
parent | 0d174a6198d96393b431ce9dc9fb1e5b8ff6c502 (diff) | |
download | pandoc-438c5c3ea863b5a1b63d3280e8667e14ee3cc7d2.tar.gz |
Use dcterms.date for html5 metadata.
-rw-r--r-- | default.dzslides | 2 | ||||
-rw-r--r-- | default.html5 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/default.dzslides b/default.dzslides index f076f02ac..33e1ee098 100644 --- a/default.dzslides +++ b/default.dzslides @@ -5,7 +5,7 @@ $for(author-meta)$ <meta name="author" content="$author-meta$" /> $endfor$ $if(date-meta)$ - <meta name="date" content="$date-meta$" /> + <meta name="dcterms.date" content="$date-meta$" /> $endif$ <title>$if(title-prefix)$$title-prefix$ - $endif$$if(pagetitle)$$pagetitle$$endif$</title> $if(highlighting-css)$ diff --git a/default.html5 b/default.html5 index ac70bc56d..e39502c28 100644 --- a/default.html5 +++ b/default.html5 @@ -7,7 +7,7 @@ $for(author-meta)$ <meta name="author" content="$author-meta$"> $endfor$ $if(date-meta)$ - <meta name="date" content="$date-meta$"> + <meta name="dcterms.date" content="$date-meta$"> $endif$ <title>$if(title-prefix)$$title-prefix$ - $endif$$if(pagetitle)$$pagetitle$$endif$</title> <!--[if lt IE 9]> |