diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-12 15:31:17 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-12 15:31:17 +0000 |
commit | 30aed16d89b365f873228c1b43cabeb64b3835ea (patch) | |
tree | 11722cee5bc36ebd76280af1efefe814eea72f32 /man_html.c | |
parent | 3b66d87218675f7ce4a9d55e7866aa75c7f9ec51 (diff) | |
download | mandoc-30aed16d89b365f873228c1b43cabeb64b3835ea.tar.gz |
Make sure that -Thtml doesn't break within literal lines. This is the
same logic as the -Tascii case. Also remove the TODO.
Diffstat (limited to 'man_html.c')
-rw-r--r-- | man_html.c | 18 |
1 files changed, 5 insertions, 13 deletions
@@ -186,12 +186,6 @@ print_man_node(MAN_ARGS) bufinit(h); - /* - * FIXME: embedded elements within next-line scopes (e.g., `br' - * within an empty `B') will cause formatting to be forgotten - * due to scope closing out. - */ - switch (n->type) { case (MAN_ROOT): child = man_root_pre(m, n, mh, h); @@ -200,19 +194,19 @@ print_man_node(MAN_ARGS) if ('\0' == *n->string) { print_otag(h, TAG_P, 0, NULL); return; - } - - if (' ' == *n->string && MAN_LINE & n->flags) + } else if (' ' == *n->string && MAN_LINE & n->flags) print_otag(h, TAG_BR, 0, NULL); print_text(h, n->string); - if (MANH_LITERAL & mh->fl) + if (MANH_LITERAL & mh->fl && + (NULL == n->next || + n->next->line > n->line)) print_otag(h, TAG_BR, 0, NULL); return; case (MAN_TBL): print_tbl(h, n->span); - break; + return; default: /* * Close out scope of font prior to opening a macro @@ -240,8 +234,6 @@ print_man_node(MAN_ARGS) case (MAN_ROOT): man_root_post(m, n, mh, h); break; - case (MAN_TBL): - break; default: if (mans[n->tok].post) (*mans[n->tok].post)(m, n, mh, h); |