aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2018-12-22 19:49:13 +0000
committerIngo Schwarze <schwarze@openbsd.org>2018-12-22 19:49:13 +0000
commit5ec5bfcdc0a17ff36ccc5b21ab1a1e407206d3c2 (patch)
tree6ebe80399d75ee647b5f598108333183de744f22
parent11b49313cb7eb9bb5033c883fdbfb07903a28a0a (diff)
downloadmandoc-5ec5bfcdc0a17ff36ccc5b21ab1a1e407206d3c2.tar.gz
mandoc-5ec5bfcdc0a17ff36ccc5b21ab1a1e407206d3c2.tar.zst
mandoc-5ec5bfcdc0a17ff36ccc5b21ab1a1e407206d3c2.zip
In the TOC, close <a> before opening <ul>.
Simplified version of a bugfix patch from rapha@.
-rw-r--r--mdoc_html.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/mdoc_html.c b/mdoc_html.c
index 4a155260..ada20b06 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_html.c,v 1.318 2018/12/16 00:17:02 schwarze Exp $ */
+/* $Id: mdoc_html.c,v 1.319 2018/12/22 19:49:13 schwarze Exp $ */
/*
* Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2014,2015,2016,2017,2018 Ingo Schwarze <schwarze@openbsd.org>
@@ -534,9 +534,10 @@ mdoc_sh_pre(MDOC_ARGS)
for (sn = n; sn != NULL; sn = sn->next) {
tsec = print_otag(h, TAG_LI, "");
id = html_make_id(sn->head, 0);
- print_otag(h, TAG_A, "hR", id);
+ tsub = print_otag(h, TAG_A, "hR", id);
free(id);
print_mdoc_nodelist(meta, sn->head->child, h);
+ print_tagq(h, tsub);
tsub = NULL;
for (subn = sn->body->child; subn != NULL;
subn = subn->next) {