diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2011-10-02 11:49:56 -0700 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2011-10-02 11:49:56 -0700 |
commit | 072df3f5dd51589262467ba2d68bd3974b0f9277 (patch) | |
tree | 50a632e47095e2e55c8e2ce9c085ff8a3dff3e74 /tests/s5.fancy.html | |
parent | c8f0bd7003844e4d5fb89f9a54106bf3f7c9c17c (diff) | |
download | pandoc-072df3f5dd51589262467ba2d68bd3974b0f9277.tar.gz |
Simplified slide creation in HTML writer.
A horizontal rule now gets transformed into an empty H1 header
before 'hierarchicalize' is called.
If the document that does not begin with an H1 header, an
empty one is provided.
This avoids the need for kludgy raw HTML.
Also, the 'titleslide' class is added to any section containing
just a title:
----
----
Diffstat (limited to 'tests/s5.fancy.html')
-rw-r--r-- | tests/s5.fancy.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/s5.fancy.html b/tests/s5.fancy.html index 39188bb1e..0e10ae0b0 100644 --- a/tests/s5.fancy.html +++ b/tests/s5.fancy.html @@ -235,14 +235,14 @@ <h3>Sam Smith<br/>Jen Jones</h3> <h4>July 15, 2006</h4> </div> -<div class="slide"> +<div id="first-slide" class="slide"> <h1>First slide</h1> <ul class="incremental"> <li>first bullet</li> <li>second bullet</li> </ul> </div> -<div class="slide"> +<div id="math" class="slide"> <h1>Math</h1> <ul class="incremental"> <li><span class="LaTeX">$\frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}$</span></li> |