diff options
author | Andrew Dunning <andunning@gmail.com> | 2015-11-16 14:04:41 -0500 |
---|---|---|
committer | Andrew Dunning <andunning@gmail.com> | 2015-12-20 11:00:24 -0500 |
commit | abd1da4263add8e97718737e4c15a20f76115261 (patch) | |
tree | 05a222438c0f384b1a0895f376444fc7ff132e37 | |
parent | 06fe6706f1b0655185248cc0c1ee3d2e187ec07d (diff) | |
download | pandoc-abd1da4263add8e97718737e4c15a20f76115261.tar.gz |
Add TOC to slides where missing.
-rw-r--r-- | default.dzslides | 5 | ||||
-rw-r--r-- | default.s5 | 5 | ||||
-rw-r--r-- | default.slideous | 5 | ||||
-rw-r--r-- | default.slidy | 5 |
4 files changed, 20 insertions, 0 deletions
diff --git a/default.dzslides b/default.dzslides index 45f509a35..a680c1afa 100644 --- a/default.dzslides +++ b/default.dzslides @@ -111,6 +111,11 @@ $endfor$ <h3 class="date">$date$</h3> </section> $endif$ +$if(toc)$ +<section id="$idprefix$TOC"> +$toc$ +</section> +$endif$ $for(include-before)$ $include-before$ $endfor$ diff --git a/default.s5 b/default.s5 index 8b59e1f50..219b129c0 100644 --- a/default.s5 +++ b/default.s5 @@ -61,6 +61,11 @@ $endif$ <h3>$date$</h3> </div> $endif$ +$if(toc)$ +<div class="slide" id="$idprefix$TOC"> +$toc$ +</div> +$endif$ $body$ $for(include-after)$ $include-after$ diff --git a/default.slideous b/default.slideous index 275e54f30..505acea3a 100644 --- a/default.slideous +++ b/default.slideous @@ -71,6 +71,11 @@ $if(date)$ $endif$ </div> $endif$ +$if(toc)$ +<div class="slide" id="$idprefix$TOC"> +$toc$ +</div> +$endif$ $body$ $for(include-after)$ $include-after$ diff --git a/default.slidy b/default.slidy index 5887540b1..796dac485 100644 --- a/default.slidy +++ b/default.slidy @@ -55,6 +55,11 @@ $if(date)$ $endif$ </div> $endif$ +$if(toc)$ +<div class="slide" id="$idprefix$TOC"> +$toc$ +</div> +$endif$ $body$ $for(include-after)$ $include-after$ |