diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2018-06-25 14:06:07 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2018-06-25 14:06:07 +0000 |
commit | 2ea85ab074a49f52979252d4bf11a7c1840c2127 (patch) | |
tree | 8f5ad8e804c98be290f4fdabab0fc34336f60734 | |
parent | 2f3c511c16f175df1fbf5973d40c6322e6b86aeb (diff) | |
download | mandoc-2ea85ab074a49f52979252d4bf11a7c1840c2127.tar.gz |
Drop explicit, constant style=margin-left attribute on .Bf blocks.
Since <div> uses HTML_NLAROUND, it is no longer needed.
-rw-r--r-- | mdoc_html.c | 2 |
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; } |