summaryrefslogtreecommitdiffstats
path: root/man_html.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2015-03-03 21:11:34 +0000
committerIngo Schwarze <schwarze@openbsd.org>2015-03-03 21:11:34 +0000
commitc6296bc7ed652f57acb7b7ab9f7ee04a79f56d84 (patch)
treebd8cf85f86e99dd87419269ec9647e44b606ba6a /man_html.c
parentbf7c1869669b3860fa6597e6b4318ba2c63ae26e (diff)
downloadmandoc-c6296bc7ed652f57acb7b7ab9f7ee04a79f56d84.tar.gz
If an eqn(7) starts on a new input line, be sure to output whitespace
in front of it. Issue found by tedu@ in glOrtho(3). There are also cases of excessive whitespace before and after equations. This patch neither fixes them nor makes them worse.
Diffstat (limited to 'man_html.c')
-rw-r--r--man_html.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/man_html.c b/man_html.c
index f2aec32e..21c277f6 100644
--- a/man_html.c
+++ b/man_html.c
@@ -223,6 +223,8 @@ print_man_node(MAN_ARGS)
print_text(h, n->string);
return;
case MAN_EQN:
+ if (n->flags & MAN_LINE)
+ putchar('\n');
print_eqn(h, n->eqn);
break;
case MAN_TBL: