diff options
author | 2017-01-19 01:00:11 +0000 | |
---|---|---|
committer | 2017-01-19 01:00:11 +0000 | |
commit | d5746e4226ce4a117bbe8aada59baf8983960f0c (patch) | |
tree | 4dd80c0a0e56958be8f8e5fd80b7a162e06aafb9 /usr.bin/mandoc/man_html.c | |
parent | reduce differences to amd64 (diff) | |
download | wireguard-openbsd-d5746e4226ce4a117bbe8aada59baf8983960f0c.tar.xz wireguard-openbsd-d5746e4226ce4a117bbe8aada59baf8983960f0c.zip |
Implement line breaking of the generated HTML code at space characters
in filled text. This does not affect HTML semantics, but makes the
HTML code even more humanly readable.
While here,
- collapse multiple consecutive space characters in filled text
- and insert a blank between style entries.
Diffstat (limited to 'usr.bin/mandoc/man_html.c')
-rw-r--r-- | usr.bin/mandoc/man_html.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/mandoc/man_html.c b/usr.bin/mandoc/man_html.c index 99b2dcaa99e..6182f74c7f4 100644 --- a/usr.bin/mandoc/man_html.c +++ b/usr.bin/mandoc/man_html.c @@ -1,4 +1,4 @@ -/* $OpenBSD: man_html.c,v 1.77 2017/01/18 19:22:18 schwarze Exp $ */ +/* $OpenBSD: man_html.c,v 1.78 2017/01/19 01:00:11 schwarze Exp $ */ /* * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2013, 2014, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org> @@ -213,8 +213,6 @@ print_man_node(MAN_ARGS) print_text(h, n->string); return; case ROFFT_EQN: - if (n->flags & NODE_LINE) - putchar('\n'); print_eqn(h, n->eqn); break; case ROFFT_TBL: |