diff options
author | John MacFarlane <jgm@berkeley.edu> | 2011-07-23 11:26:11 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2011-07-23 11:26:11 -0700 |
commit | 12110f3282b78d81e255b3c348ad311b7f08fdc9 (patch) | |
tree | e6c4ea938baede31035ad98b4dc7611dbb0ca95e /tests | |
parent | 30159186eae34c32e46e3d614400e5ff88ad2662 (diff) | |
download | pandoc-12110f3282b78d81e255b3c348ad311b7f08fdc9.tar.gz |
HTML writer: Display author and date after title.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/s5.inserts.html | 5 | ||||
-rw-r--r-- | tests/writer.html | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/tests/s5.inserts.html b/tests/s5.inserts.html index 534da25d3..67832ea3d 100644 --- a/tests/s5.inserts.html +++ b/tests/s5.inserts.html @@ -12,7 +12,12 @@ </head> <body> 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> +</div> <h1 id="first-slide">First slide</h1> <ul> <li>first bullet</li> diff --git a/tests/writer.html b/tests/writer.html index 371e8e17a..fac22f17e 100644 --- a/tests/writer.html +++ b/tests/writer.html @@ -9,7 +9,12 @@ <title>Pandoc Test Suite</title> </head> <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> +</div> <p>This is a set of tests for pandoc. Most of them are adapted from John Gruber’s markdown test suite.</p> <hr /> <h1 id="headers">Headers</h1> |