diff options
author | John MacFarlane <jgm@berkeley.edu> | 2011-12-01 18:51:22 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2011-12-01 18:51:22 -0800 |
commit | 9fd00ca239d07c49cad88ca242729c4d40baf2be (patch) | |
tree | 3a7eb339df39593eeb0e06b672ae9bf2316551e5 | |
parent | 5facbc552da097dd150112457866a7785cfb21d4 (diff) | |
download | pandoc-9fd00ca239d07c49cad88ca242729c4d40baf2be.tar.gz |
Slidy, HTML: Use h2 for author, h3 for date.
Previously, title was h1, author h3, date h4. There was
no real reason for skipping h2.
-rw-r--r-- | default.html | 4 | ||||
-rw-r--r-- | default.s5 | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/default.html b/default.html index 8c638bfc4..2bae586a7 100644 --- a/default.html +++ b/default.html @@ -54,10 +54,10 @@ $else$ $endif$ <h1 class="title">$title$</h1> $for(author)$ -<h3 class="author">$author$</h3> +<h2 class="author">$author$</h2> $endfor$ $if(date)$ -<h4 class="date">$date$</h4> +<h3 class="date">$date$</h3> $endif$ $if(html5)$ </header> diff --git a/default.s5 b/default.s5 index 87b39f268..14d153863 100644 --- a/default.s5 +++ b/default.s5 @@ -57,8 +57,8 @@ $endfor$ $if(title)$ <div class="slide"> <h1>$title$</h1> - <h3>$for(author)$$author$$sep$<br/>$endfor$</h3> - <h4>$date$</h4> + <h2>$for(author)$$author$$sep$<br/>$endfor$</h2> + <h3>$date$</h3> </div> $endif$ $body$ |