Merge pull request #155 from adunning/html-abstract

Add TOC to HTML slides where missing.
This commit is contained in:
John MacFarlane 2016-01-01 20:26:57 -08:00
commit 8660958b2a
4 changed files with 20 additions and 0 deletions

View file

@ -181,6 +181,11 @@ $endif$
</footer> </footer>
</section> </section>
$endif$ $endif$
$if(toc)$
<section id="$idprefix$TOC">
$toc$
</section>
$endif$
$for(include-before)$ $for(include-before)$
$include-before$ $include-before$
$endfor$ $endfor$

View file

@ -72,6 +72,11 @@ $if(date)$
$endif$ $endif$
</div> </div>
$endif$ $endif$
$if(toc)$
<div class="slide" id="$idprefix$TOC">
$toc$
</div>
$endif$
$body$ $body$
$for(include-after)$ $for(include-after)$
$include-after$ $include-after$

View file

@ -77,6 +77,11 @@ $if(date)$
$endif$ $endif$
</div> </div>
$endif$ $endif$
$if(toc)$
<div class="slide" id="$idprefix$TOC">
$toc$
</div>
$endif$
$body$ $body$
$for(include-after)$ $for(include-after)$
$include-after$ $include-after$

View file

@ -63,6 +63,11 @@ $if(date)$
$endif$ $endif$
</div> </div>
$endif$ $endif$
$if(toc)$
<div class="slide" id="$idprefix$TOC">
$toc$
</div>
$endif$
$body$ $body$
$for(include-after)$ $for(include-after)$
$include-after$ $include-after$