aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_html.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2018-05-21 00:00:37 +0000
committerIngo Schwarze <schwarze@openbsd.org>2018-05-21 00:00:37 +0000
commit73beeba33e71efeeba0e349f87884864df356be1 (patch)
tree314be439c0e6664b63b961eaaf3c6274fb9a990a /mdoc_html.c
parenta5431e98343d01db298db894f32761963d932e48 (diff)
downloadmandoc-73beeba33e71efeeba0e349f87884864df356be1.tar.gz
mandoc-73beeba33e71efeeba0e349f87884864df356be1.tar.zst
mandoc-73beeba33e71efeeba0e349f87884864df356be1.zip
Use <span> rather than abusing <i> for .Pa;
suggested by John Gardner <gardnerjohng at gmail dot com>.
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 c871181d..4e72f123 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_html.c,v 1.300 2018/05/09 00:46:10 schwarze Exp $ */
+/* $Id: mdoc_html.c,v 1.301 2018/05/21 00:00:37 schwarze Exp $ */
/*
* Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2014,2015,2016,2017,2018 Ingo Schwarze <schwarze@openbsd.org>
@@ -979,7 +979,7 @@ mdoc_bd_pre(MDOC_ARGS)
static int
mdoc_pa_pre(MDOC_ARGS)
{
- print_otag(h, TAG_I, "cT", "Pa");
+ print_otag(h, TAG_SPAN, "cT", "Pa");
return 1;
}