diff --git a/Docs/src/bin/halibut.exe b/Docs/src/bin/halibut.exe index f92e0785..c617e1a0 100644 Binary files a/Docs/src/bin/halibut.exe and b/Docs/src/bin/halibut.exe differ diff --git a/Docs/src/bin/halibut/bk_xhtml.c b/Docs/src/bin/halibut/bk_xhtml.c index 56ce9926..c1066006 100644 --- a/Docs/src/bin/halibut/bk_xhtml.c +++ b/Docs/src/bin/halibut/bk_xhtml.c @@ -1075,6 +1075,7 @@ xhtml_add_contents_entry(FILE * fp, xhtmlsection * section, int limit) } fprintf(fp, "
  • "); fprintf(fp, "", section->file->filename,section->fragment); + if (section->para->type==para_Chapter||section->para->type==para_Appendix) fprintf(fp, ""); if ((section->para->type!=para_Heading&§ion->para->type!=para_Subsect)||(section->para->kwtext&&!section->para->words)) { xhtml_para(fp, section->para->kwtext); if (section->para->words) @@ -1083,6 +1084,7 @@ xhtml_add_contents_entry(FILE * fp, xhtmlsection * section, int limit) if (section->para->words) { xhtml_para(fp, section->para->words); } + if (section->para->type==para_Chapter||section->para->type==para_Appendix) fprintf(fp, ""); fprintf(fp, "
  • \n"); return TRUE; }