summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mdoc_html.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/mdoc_html.c b/mdoc_html.c
index 29713752..878bbce6 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -642,7 +642,6 @@ mdoc_nm_pre(MDOC_ARGS)
switch (n->type) {
case ROFFT_ELEM:
- synopsis_pre(h, n);
PAIR_CLASS_INIT(&tag, "name");
print_otag(h, TAG_B, 1, &tag);
if (NULL == n->child && meta->name)
@@ -650,6 +649,8 @@ mdoc_nm_pre(MDOC_ARGS)
return(1);
case ROFFT_HEAD:
print_otag(h, TAG_TD, 0, NULL);
+ PAIR_CLASS_INIT(&tag, "name");
+ print_otag(h, TAG_B, 1, &tag);
if (NULL == n->child && meta->name)
print_text(h, meta->name);
return(1);
@@ -664,7 +665,7 @@ mdoc_nm_pre(MDOC_ARGS)
PAIR_CLASS_INIT(&tag, "synopsis");
print_otag(h, TAG_TABLE, 1, &tag);
- for (len = 0, n = n->child; n; n = n->next)
+ for (len = 0, n = n->head->child; n; n = n->next)
if (n->type == ROFFT_TEXT)
len += html_strlen(n->string);