Fix sidebar scrolling with part titles.

This commit is contained in:
Eric Huss 2020-06-24 21:13:02 -07:00
parent 138dc696b7
commit e9951af73e
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ impl HelperDef for RenderToc {
// Part title // Part title
if let Some(title) = item.get("part") { if let Some(title) = item.get("part") {
out.write("<li class=\"part-title active\">")?; out.write("<li class=\"part-title\">")?;
out.write(title)?; out.write(title)?;
out.write("</li>")?; out.write("</li>")?;
continue; continue;