diff options
author | John MacFarlane <jgm@berkeley.edu> | 2011-12-01 18:57:41 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2011-12-01 18:57:41 -0800 |
commit | c8333b5d1b1e5ceb4023a9ac56df0d1df128b236 (patch) | |
tree | f599d480fbdce68fd9e8d510ba164484437f8c11 /tests | |
parent | 3270c838b50ce4aa859e259e48531772f48c08da (diff) | |
download | pandoc-c8333b5d1b1e5ceb4023a9ac56df0d1df128b236.tar.gz |
Made author/date more consistent in HTML templates.
Authors are now h2, date h3. (Instead of h3/h4, as in the past.)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/s5.basic.html | 4 | ||||
-rw-r--r-- | tests/s5.fancy.html | 4 | ||||
-rw-r--r-- | tests/s5.inserts.html | 6 | ||||
-rw-r--r-- | tests/writer.html | 6 |
4 files changed, 10 insertions, 10 deletions
diff --git a/tests/s5.basic.html b/tests/s5.basic.html index 73a33ac56..15874627e 100644 --- a/tests/s5.basic.html +++ b/tests/s5.basic.html @@ -32,8 +32,8 @@ <div class="presentation"> <div class="slide"> <h1>My S5 Document</h1> - <h3>Sam Smith<br/>Jen Jones</h3> - <h4>July 15, 2006</h4> + <h2>Sam Smith<br/>Jen Jones</h2> + <h3>July 15, 2006</h3> </div> <div class="slide"> <h1>First slide</h1> diff --git a/tests/s5.fancy.html b/tests/s5.fancy.html index 43402dd1a..a806cb353 100644 --- a/tests/s5.fancy.html +++ b/tests/s5.fancy.html @@ -233,8 +233,8 @@ <div class="presentation"> <div class="slide"> <h1>My S5 Document</h1> - <h3>Sam Smith<br/>Jen Jones</h3> - <h4>July 15, 2006</h4> + <h2>Sam Smith<br/>Jen Jones</h2> + <h3>July 15, 2006</h3> </div> <div class="slide"> <h1>First slide</h1> diff --git a/tests/s5.inserts.html b/tests/s5.inserts.html index 5db05bf4c..275684e68 100644 --- a/tests/s5.inserts.html +++ b/tests/s5.inserts.html @@ -15,9 +15,9 @@ STUFF INSERTED <div id="header"> <h1 class="title">My S5 Document</h1> -<h3 class="author">Sam Smith</h3> -<h3 class="author">Jen Jones</h3> -<h4 class="date">July 15, 2006</h4> +<h2 class="author">Sam Smith</h2> +<h2 class="author">Jen Jones</h2> +<h3 class="date">July 15, 2006</h3> </div> <h1 id="first-slide">First slide</h1> <ul> diff --git a/tests/writer.html b/tests/writer.html index 84b1f12d4..e9f2b96f9 100644 --- a/tests/writer.html +++ b/tests/writer.html @@ -12,9 +12,9 @@ <body> <div id="header"> <h1 class="title">Pandoc Test Suite</h1> -<h3 class="author">John MacFarlane</h3> -<h3 class="author">Anonymous</h3> -<h4 class="date">July 17, 2006</h4> +<h2 class="author">John MacFarlane</h2> +<h2 class="author">Anonymous</h2> +<h3 class="date">July 17, 2006</h3> </div> <p>This is a set of tests for pandoc. Most of them are adapted from John Gruber’s markdown test suite.</p> <hr /> |