summaryrefslogtreecommitdiffstats
path: root/mdoc_html.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2018-05-21 01:11:31 +0000
committerIngo Schwarze <schwarze@openbsd.org>2018-05-21 01:11:31 +0000
commit1f3a93e77917534228a285ef0cb54e575870b4dd (patch)
treebc38d6372be9c42afe76bf09f5a42ca220dfe643 /mdoc_html.c
parente78f92999babd9f87dc74ee273daca5486cd2997 (diff)
downloadmandoc-1f3a93e77917534228a285ef0cb54e575870b4dd.tar.gz
Use <span> for .Ms rather than <b>; discussed with John Gardner.
Diffstat (limited to 'mdoc_html.c')
-rw-r--r--mdoc_html.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mdoc_html.c b/mdoc_html.c
index 4a87a8bd..d509dceb 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -1463,7 +1463,7 @@ mdoc_ms_pre(MDOC_ARGS)
if ((id = cond_id(n)) != NULL)
print_otag(h, TAG_A, "chR", "permalink", id);
- print_otag(h, TAG_B, "cTi", "Ms", id);
+ print_otag(h, TAG_SPAN, "cTi", "Ms", id);
free(id);
return 1;
}