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 /default.html | |
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.
Diffstat (limited to 'default.html')
-rw-r--r-- | default.html | 4 |
1 files changed, 2 insertions, 2 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> |