aboutsummaryrefslogtreecommitdiffstatshomepage
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
commit559195dcad0532b7eb395988eb0122053d7d12c5 (patch)
treed4f0ff03ca5b1873500375179a7159a8b2df5d75 /mdoc_html.c
parent73beeba33e71efeeba0e349f87884864df356be1 (diff)
downloadmandoc-559195dcad0532b7eb395988eb0122053d7d12c5.tar.gz
mandoc-559195dcad0532b7eb395988eb0122053d7d12c5.tar.zst
mandoc-559195dcad0532b7eb395988eb0122053d7d12c5.zip
Use <span> for .Ad rather than <i>; also suggested by John Gardner.
Diffstat (limited to 'mdoc_html.c')
-rw-r--r--mdoc_html.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mdoc_html.c b/mdoc_html.c
index 4e72f123..73e5d8ca 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_html.c,v 1.301 2018/05/21 00:00:37 schwarze Exp $ */
+/* $Id: mdoc_html.c,v 1.302 2018/05/21 00:30:23 schwarze Exp $ */
/*
* Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2014,2015,2016,2017,2018 Ingo Schwarze <schwarze@openbsd.org>
@@ -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;
}