aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-01-12 15:31:17 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-01-12 15:31:17 +0000
commit2a677979d5b94a58bb3b5bac12084fa09a6cfcdd (patch)
treec94e1dd9f2beec7a43eef47749e989e2be90dbd5
parent32d745fbf3e703a2a0b405cd89d73ef56e995d26 (diff)
downloadmandoc-2a677979d5b94a58bb3b5bac12084fa09a6cfcdd.tar.gz
mandoc-2a677979d5b94a58bb3b5bac12084fa09a6cfcdd.tar.zst
mandoc-2a677979d5b94a58bb3b5bac12084fa09a6cfcdd.zip
Make sure that -Thtml doesn't break within literal lines. This is the
same logic as the -Tascii case. Also remove the TODO.
-rw-r--r--TODO6
-rw-r--r--man_html.c20
2 files changed, 7 insertions, 19 deletions
diff --git a/TODO b/TODO
index 8ae44be5..19a98cbb 100644
--- a/TODO
+++ b/TODO
@@ -1,6 +1,6 @@
************************************************************************
* Official mandoc TODO.
-* $Id: TODO,v 1.75 2011/01/10 03:43:47 schwarze Exp $
+* $Id: TODO,v 1.76 2011/01/12 15:31:17 kristaps Exp $
************************************************************************
************************************************************************
@@ -17,10 +17,6 @@
* formatter bugs
************************************************************************
-- in literal mode, the man(7) -Tascii formatter
- breaks the line between macro arguments,
- e.g. ".B #include <libintl.h>" in gettext(3)
-
************************************************************************
* missing features
************************************************************************
diff --git a/man_html.c b/man_html.c
index 9e666c77..de8cf2ed 100644
--- a/man_html.c
+++ b/man_html.c
@@ -1,4 +1,4 @@
-/* $Id: man_html.c,v 1.63 2011/01/12 10:43:22 kristaps Exp $ */
+/* $Id: man_html.c,v 1.64 2011/01/12 15:31:17 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -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);