Support toc-title in revealjs (#7171)

* Support toc-title in revealjs
* Add semantic HTML "nav" tag

Closes #7170.

As with default.html5
This commit is contained in:
Florian Kohrt 2021-04-30 03:49:17 +02:00 committed by GitHub
parent b9b22e3ce4
commit 96d384ac9e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -59,7 +59,12 @@ $endif$
$endif$
$if(toc)$
<section id="$idprefix$TOC">
<nav role="doc-toc">
$if(toc-title)$
<h2 id="$idprefix$toc-title">$toc-title$</h2>
$endif$
$table-of-contents$
</nav>
</section>
$endif$