HTML writer: Display author and date after title.
This commit is contained in:
parent
30159186ea
commit
12110f3282
3 changed files with 11 additions and 1 deletions
|
@ -1 +1 @@
|
|||
Subproject commit 4900bcb12808b95a180fa337f078869b6ff3315c
|
||||
Subproject commit 8590fab1359fd618a7f8f737121c9413a8749d1a
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue