diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2017-01-18 19:22:19 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2017-01-18 19:22:19 +0000 |
commit | bde2df117499cb77cc0553de690dcdabdcc3c0b3 (patch) | |
tree | cc1a05d4d86f94715de0b9c0ee7b257d2369e012 /usr.bin/mandoc/man_html.c | |
parent | 10c92bef311a87543f0b2026f9acb6aa640f1cb0 (diff) |
Make HTML output more human readable by overhauling line break logic
around tags and by introducing some simple indentation.
No change of HTML semantics intended.
Diffstat (limited to 'usr.bin/mandoc/man_html.c')
-rw-r--r-- | usr.bin/mandoc/man_html.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/mandoc/man_html.c b/usr.bin/mandoc/man_html.c index e2b7950f7d3..99b2dcaa99e 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.76 2017/01/17 15:32:39 schwarze Exp $ */ +/* $OpenBSD: man_html.c,v 1.77 2017/01/18 19:22:18 schwarze Exp $ */ /* * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2013, 2014, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org> @@ -164,7 +164,6 @@ html_man(void *arg, const struct roff_man *man) print_man_nodelist(&man->meta, man->first, &mh, h); print_tagq(h, t); - putchar('\n'); } static void |