summaryrefslogtreecommitdiffstats
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
commitb4255adc323099e5663b8052753a0e07775e7ef0 (patch)
treeac512ed5e4f5b02b63246ae84d380aac81b1442d /mdoc_html.c
parent0457dff3e8a7b7b7182c4a82fc7ced6540dcb870 (diff)
downloadmandoc-b4255adc323099e5663b8052753a0e07775e7ef0.tar.gz
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mdoc_html.c b/mdoc_html.c
index 3a78913e..9f6e9f14 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -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;
}