From e86af0dc8039b4e3286d2e1a1472b6791d660c82 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Thu, 18 Aug 2011 09:02:22 +0000 Subject: Have `Li' be correctly monospaced in -T[x]html. Also make sure that `Li' prints as a CODE tag and the style-sheet has the `lit' class apply to multiple tag types. --- mdoc_html.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mdoc_html.c') diff --git a/mdoc_html.c b/mdoc_html.c index 85322c73..281f557c 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -1994,7 +1994,7 @@ mdoc_li_pre(MDOC_ARGS) struct htmlpair tag; PAIR_CLASS_INIT(&tag, "lit"); - print_otag(h, TAG_SPAN, 1, &tag); + print_otag(h, TAG_CODE, 1, &tag); return(1); } -- cgit