aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_html.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2019-09-03 15:09:44 +0000
committerIngo Schwarze <schwarze@openbsd.org>2019-09-03 15:09:44 +0000
commit90615d7afb2eae6a20abf4af79a4b09ac55ec284 (patch)
tree2c722e953d416f430347cdea403c7dfee66f9839 /mdoc_html.c
parent86b0169f43d17f57d4eaad30937f9c1948200884 (diff)
downloadmandoc-90615d7afb2eae6a20abf4af79a4b09ac55ec284.tar.gz
mandoc-90615d7afb2eae6a20abf4af79a4b09ac55ec284.tar.zst
mandoc-90615d7afb2eae6a20abf4af79a4b09ac55ec284.zip
Format .Nd with more logically with <span> rather than <div>; after all,
it is supposed to be a one-line description. For the case where .Nd generates flow content (which is very bad style but syntactically valid), rely on the new feature of html_close_paragraph() to close out the <span> prematurely, effectively moving the flow content out of the .Nd for HTML presentation. For the final closing, also rely on the new html_close_paragraph() functionality, this time triggered by the subsequent block, which will typically be .Sh SYNOPSIS.
Diffstat (limited to 'mdoc_html.c')
-rw-r--r--mdoc_html.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/mdoc_html.c b/mdoc_html.c
index 977d4271..b371ad49 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_html.c,v 1.329 2019/09/01 15:12:19 schwarze Exp $ */
+/* $Id: mdoc_html.c,v 1.330 2019/09/03 15:09:44 schwarze Exp $ */
/*
* Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2014-2019 Ingo Schwarze <schwarze@openbsd.org>
@@ -653,7 +653,6 @@ mdoc_nd_pre(MDOC_ARGS)
{
switch (n->type) {
case ROFFT_BLOCK:
- html_close_paragraph(h);
return 1;
case ROFFT_HEAD:
return 0;
@@ -663,8 +662,7 @@ mdoc_nd_pre(MDOC_ARGS)
abort();
}
print_text(h, "\\(em");
- /* Cannot use TAG_SPAN because it may contain blocks. */
- print_otag(h, TAG_DIV, "c", "Nd");
+ print_otag(h, TAG_SPAN, "c", "Nd");
return 1;
}