diff --git a/Docs/src/bin/halibut.exe b/Docs/src/bin/halibut.exe
index c617e1a0..2c001259 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 c1066006..7a5feb98 100644
--- a/Docs/src/bin/halibut/bk_xhtml.c
+++ b/Docs/src/bin/halibut/bk_xhtml.c
@@ -1074,17 +1074,17 @@ xhtml_add_contents_entry(FILE * fp, xhtmlsection * section, int limit)
fprintf(fp, "
\n");
}
fprintf(fp, "- ");
- fprintf(fp, "", section->file->filename,section->fragment);
+ fprintf(fp, "",(section->para->type==para_Chapter||section->para->type==para_Appendix)?"class=\"btitle\" ":"", 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)
fprintf(fp, ": ");
}
+ if (section->para->type==para_Chapter||section->para->type==para_Appendix) fprintf(fp, "");
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;
}
diff --git a/Docs/style.css b/Docs/style.css
index fc134c6f..ba467028 100644
--- a/Docs/style.css
+++ b/Docs/style.css
@@ -15,4 +15,13 @@ a:hover {
background-color: #0000EA;
color: #FFFFFF;
text-decoration: none;
+}
+.btitle {
+ color: #000000;
+ text-decoration: underline;
+}
+.btitle:hover {
+ background-color: #F4F4F4;
+ color: #000000;
+ text-decoration: underline;
}
\ No newline at end of file