summaryrefslogtreecommitdiffstats
path: root/mdoc_html.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2018-06-25 14:06:07 +0000
committerIngo Schwarze <schwarze@openbsd.org>2018-06-25 14:06:07 +0000
commit2ea85ab074a49f52979252d4bf11a7c1840c2127 (patch)
tree8f5ad8e804c98be290f4fdabab0fc34336f60734 /mdoc_html.c
parent2f3c511c16f175df1fbf5973d40c6322e6b86aeb (diff)
downloadmandoc-2ea85ab074a49f52979252d4bf11a7c1840c2127.tar.gz
Drop explicit, constant style=margin-left attribute on .Bf blocks.
Since <div> uses HTML_NLAROUND, it is no longer needed.
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 2f2097b5..6ccda04d 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -1416,7 +1416,7 @@ mdoc_bf_pre(MDOC_ARGS)
cattr = "Bf No";
/* Cannot use TAG_SPAN because it may contain blocks. */
- print_otag(h, TAG_DIV, "cshl", cattr, 1);
+ print_otag(h, TAG_DIV, "c", cattr);
return 1;
}