diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-01-06 09:54:58 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-01-06 09:54:58 +0000 |
commit | bb8478e4e24b431ca81ee7f669d517eb11a47500 (patch) | |
tree | 3dedfbceaf88404e531b81e37f07b8f026f07ebb /tests/s5.basic.html | |
parent | 06e6107f535ae921f4b1fec2e7de7dd98b793435 (diff) | |
download | pandoc-bb8478e4e24b431ca81ee7f669d517eb11a47500.tar.gz |
Merged changes from 'quotes' branch since r431. Smart typography
is now handled in the Markdown and LaTeX readers, rather than in
the writers. The HTML writer has been rewritten to use the
prettyprinting library.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@436 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'tests/s5.basic.html')
-rw-r--r-- | tests/s5.basic.html | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/tests/s5.basic.html b/tests/s5.basic.html index 50ce30968..8722240f6 100644 --- a/tests/s5.basic.html +++ b/tests/s5.basic.html @@ -737,6 +737,7 @@ function startup() { window.onload = startup; window.onresize = function(){setTimeout('fontScale()', 50);}</script> + <meta name="author" content="Sam Smith, Jen Jones" /> <meta name="date" content="July 15, 2006" /> <title>My S5 Document</title> @@ -747,38 +748,40 @@ window.onresize = function(){setTimeout('fontScale()', 50);}</script> <div id="currentSlide"></div> <div id="header"></div> <div id="footer"> + <h1>July 15, 2006</h1> <h2>My S5 Document</h2> </div> </div> + <div class="presentation"> + <div class="slide"> + <h1>My S5 Document</h1> <h3>Sam Smith, Jen Jones</h3> <h4>July 15, 2006</h4> </div> + <div class="slide"> + <h1>First slide</h1> <ul> -<li>first bullet</li> -<li>second bullet</li> -</ul> -</div> -<div class="slide"> -<h1>Smarty</h1> -<ul class="incremental"> -<li>"Hello there"</li> -<li>Here's a -- dash</li> -<li>And 'ellipses'...</li> + <li>first bullet</li> + <li>second bullet</li> </ul> </div> + <div class="slide"> + <h1>Math</h1> <ul> -<li>$\frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}$</li> + <li>$\frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}$</li> </ul> </div> + </div> + </body> </html> |