diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-09-25 21:43:19 +0200 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2016-09-25 21:43:19 +0200 |
commit | 8db1c3600174521698e22ec7eacc60c8963f55a9 (patch) | |
tree | 3988db9b62c725dc9e4cfa5a31d313e1655d721c | |
parent | f2b84d021d920f71889adc173c7d3e1ba1e205f3 (diff) | |
download | pandoc-8db1c3600174521698e22ec7eacc60c8963f55a9.tar.gz |
Use p tag for subtitle, author, date in epub, revealjs, slidy.
-rw-r--r-- | default.epub | 6 | ||||
-rw-r--r-- | default.epub3 | 6 | ||||
-rw-r--r-- | default.revealjs | 6 | ||||
-rw-r--r-- | default.slidy | 2 |
4 files changed, 10 insertions, 10 deletions
diff --git a/default.epub b/default.epub index 1c042ff1e..afcf96a3e 100644 --- a/default.epub +++ b/default.epub @@ -28,13 +28,13 @@ $else$ $endif$ $endfor$ $if(subtitle)$ - <h1 class="subtitle">$subtitle$</h1> + <p class="subtitle">$subtitle$</p> $endif$ $for(author)$ - <h2 class="author">$author$</h2> + <p class="author">$author$</p> $endfor$ $for(creator)$ - <h2 class="$creator.role$">$creator.text$</h2> + <p class="$creator.role$">$creator.text$</p> $endfor$ $if(publisher)$ <p class="publisher">$publisher$</p> diff --git a/default.epub3 b/default.epub3 index 0325d53eb..8a12e0fb3 100644 --- a/default.epub3 +++ b/default.epub3 @@ -33,13 +33,13 @@ $else$ $endif$ $endfor$ $if(subtitle)$ - <h1 class="subtitle">$subtitle$</h1> + <p class="subtitle">$subtitle$</p> $endif$ $for(author)$ - <h2 class="author">$author$</h2> + <p class="author">$author$</p> $endfor$ $for(creator)$ - <h2 class="$creator.role$">$creator.text$</h2> + <p class="$creator.role$">$creator.text$</p> $endfor$ $if(publisher)$ <p class="publisher">$publisher$</p> diff --git a/default.revealjs b/default.revealjs index db16168f9..e6d561292 100644 --- a/default.revealjs +++ b/default.revealjs @@ -63,13 +63,13 @@ $if(title)$ <section> <h1 class="title">$title$</h1> $if(subtitle)$ - <h1 class="subtitle">$subtitle$</h1> + <p class="subtitle">$subtitle$</p> $endif$ $for(author)$ - <h2 class="author">$author$</h2> + <p class="author">$author$</p> $endfor$ $if(date)$ - <h3 class="date">$date$</h3> + <p class="date">$date$</p> $endif$ </section> $endif$ diff --git a/default.slidy b/default.slidy index 5f83b40ca..cccf3537d 100644 --- a/default.slidy +++ b/default.slidy @@ -51,7 +51,7 @@ $if(title)$ <div class="slide titlepage"> <h1 class="title">$title$</h1> $if(subtitle)$ - <h1 class="subtitle">$subtitle$</h1> + <p class="subtitle">$subtitle$</p> $endif$ $if(author)$ <p class="author"> |