summaryrefslogtreecommitdiffstats
path: root/mdoc_html.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2018-05-21 00:30:23 +0000
committerIngo Schwarze <schwarze@openbsd.org>2018-05-21 00:30:23 +0000
commite78f92999babd9f87dc74ee273daca5486cd2997 (patch)
tree3884ff11c45d89d86aae9055eec1aeb7d86d57d2 /mdoc_html.c
parentb4255adc323099e5663b8052753a0e07775e7ef0 (diff)
downloadmandoc-e78f92999babd9f87dc74ee273daca5486cd2997.tar.gz
Use <span> for .Ad rather than <i>; also suggested by 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 9f6e9f14..4a87a8bd 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -986,7 +986,7 @@ mdoc_pa_pre(MDOC_ARGS)
static int
mdoc_ad_pre(MDOC_ARGS)
{
- print_otag(h, TAG_I, "c", "Ad");
+ print_otag(h, TAG_SPAN, "c", "Ad");
return 1;
}