diff options
author | Jan Larres <jan@majutsushi.net> | 2015-06-03 00:28:55 +1200 |
---|---|---|
committer | Jan Larres <jan@majutsushi.net> | 2015-06-03 00:28:55 +1200 |
commit | afd95e8e11f46ebfb5b7ff973412b7a5fc857f74 (patch) | |
tree | 7711b26ecfb0c695450d2bdaf2f0f6942948c857 /default.epub3 | |
parent | 7db51bc9ae6afe0de79804346075d2001ba757e2 (diff) | |
download | pandoc-afd95e8e11f46ebfb5b7ff973412b7a5fc857f74.tar.gz |
Use creator.role instead of creator.type
The EPUB metadata description specifies "role" for creators, not "type":
http://pandoc.org/README.html#epub-metadata
This fixed the two epub templates to use the correct syntax.
Diffstat (limited to 'default.epub3')
-rw-r--r-- | default.epub3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/default.epub3 b/default.epub3 index a8d6c1716..0325d53eb 100644 --- a/default.epub3 +++ b/default.epub3 @@ -39,7 +39,7 @@ $for(author)$ <h2 class="author">$author$</h2> $endfor$ $for(creator)$ - <h2 class="$creator.type$">$creator.text$</h2> + <h2 class="$creator.role$">$creator.text$</h2> $endfor$ $if(publisher)$ <p class="publisher">$publisher$</p> |