aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/man_html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-01-12 10:43:22 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-01-12 10:43:22 +0000
commitbf9cd278f0762f5462721f4edb03b4172663d23f (patch)
tree039daf4f957a0b2ddd6adf6b1082739bf927cb6c /man_html.c
parent15176c550e36917edca474cf54bf81fdcd5cc066 (diff)
downloadmandoc-bf9cd278f0762f5462721f4edb03b4172663d23f.tar.gz
mandoc-bf9cd278f0762f5462721f4edb03b4172663d23f.tar.zst
mandoc-bf9cd278f0762f5462721f4edb03b4172663d23f.zip
If the first character of free-form text is whitespace, then a newline
shall precede outputted text (surprise!).
Diffstat (limited to 'man_html.c')
-rw-r--r--man_html.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/man_html.c b/man_html.c
index da6880a1..9e666c77 100644
--- a/man_html.c
+++ b/man_html.c
@@ -1,4 +1,4 @@
-/* $Id: man_html.c,v 1.62 2011/01/07 13:20:58 kristaps Exp $ */
+/* $Id: man_html.c,v 1.63 2011/01/12 10:43:22 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -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;