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.fancy.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.fancy.html')
-rw-r--r-- | tests/s5.fancy.html | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/tests/s5.fancy.html b/tests/s5.fancy.html index fbf872241..8892e2ac7 100644 --- a/tests/s5.fancy.html +++ b/tests/s5.fancy.html @@ -1649,6 +1649,7 @@ else } } </script> + <meta name="author" content="Sam Smith, Jen Jones" /> <meta name="date" content="July 15, 2006" /> <title>My S5 Document</title> @@ -1659,38 +1660,40 @@ else <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 class="incremental"> -<li>first bullet</li> -<li>second bullet</li> -</ul> -</div> -<div class="slide"> -<h1>Smarty</h1> -<ul> -<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 class="incremental"> -<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> |