diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-12-24 22:47:37 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-12-24 22:47:37 +0000 |
commit | 95fb9d3f9b3a6064ae1787f3d5aba09a5ed17dec (patch) | |
tree | dea55b753ca73ea9bec41a4e5c84086eaa29371f | |
parent | 5e52928de7dbe0445296bd6d6ffc37849a28b70b (diff) | |
download | mandoc-95fb9d3f9b3a6064ae1787f3d5aba09a5ed17dec.tar.gz |
Make `Fo' use a B instead of SPAN (left-over).
-rw-r--r-- | mdoc_html.c | 4 |
1 files 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); |