From 95fb9d3f9b3a6064ae1787f3d5aba09a5ed17dec Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Fri, 24 Dec 2010 22:47:37 +0000 Subject: Make `Fo' use a B instead of SPAN (left-over). --- mdoc_html.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mdoc_html.c b/mdoc_html.c index 5f077cb9..f4b7f485 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -1597,7 +1597,7 @@ mdoc_fo_pre(MDOC_ARGS) assert(n->child->string); PAIR_CLASS_INIT(&tag, "fname"); - t = print_otag(h, TAG_SPAN, 1, &tag); + t = print_otag(h, TAG_B, 1, &tag); print_text(h, n->child->string); print_tagq(h, t); return(0); @@ -1684,7 +1684,7 @@ mdoc_rv_pre(MDOC_ARGS) for (nn = n->child; nn; nn = nn->next) { PAIR_CLASS_INIT(&tag, "fname"); - t = print_otag(h, TAG_SPAN, 1, &tag); + t = print_otag(h, TAG_B, 1, &tag); print_text(h, nn->string); print_tagq(h, t); -- cgit