From 2bf82dba54d0ddc4e85c60a1627506ced02908f0 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Wed, 12 Jan 2011 10:43:22 +0000 Subject: If the first character of free-form text is whitespace, then a newline shall precede outputted text (surprise!). --- man_html.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'man_html.c') diff --git a/man_html.c b/man_html.c index 2495c8cd..4217e87e 100644 --- a/man_html.c +++ b/man_html.c @@ -197,7 +197,16 @@ print_man_node(MAN_ARGS) child = man_root_pre(m, n, mh, h); break; case (MAN_TEXT): + if ('\0' == *n->string) { + print_otag(h, TAG_P, 0, NULL); + return; + } + + if (' ' == *n->string && MAN_LINE & n->flags) + print_otag(h, TAG_BR, 0, NULL); + print_text(h, n->string); + if (MANH_LITERAL & mh->fl) print_otag(h, TAG_BR, 0, NULL); return; -- cgit