=================================================================== RCS file: /cvs/mandoc/mdoc_html.c,v retrieving revision 1.317 retrieving revision 1.320 diff -u -p -r1.317 -r1.320 --- mandoc/mdoc_html.c 2018/12/13 11:55:46 1.317 +++ mandoc/mdoc_html.c 2018/12/25 00:06:25 1.320 @@ -1,4 +1,4 @@ -/* $Id: mdoc_html.c,v 1.317 2018/12/13 11:55:46 schwarze Exp $ */ +/* $Id: mdoc_html.c,v 1.320 2018/12/25 00:06:25 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons * Copyright (c) 2014,2015,2016,2017,2018 Ingo Schwarze @@ -27,6 +27,7 @@ #include #include "mandoc_aux.h" +#include "mandoc.h" #include "roff.h" #include "mdoc.h" #include "out.h" @@ -533,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) { @@ -794,7 +796,7 @@ mdoc_it_pre(MDOC_ARGS) static int mdoc_bl_pre(MDOC_ARGS) { - char cattr[28]; + char cattr[32]; struct mdoc_bl *bl; enum htmltag elemtype;