diff options
-rw-r--r-- | html.c | 1 | ||||
-rw-r--r-- | html.h | 1 | ||||
-rw-r--r-- | mdoc_html.c | 2 |
3 files changed, 1 insertions, 3 deletions
@@ -65,7 +65,6 @@ static const struct htmldata htmltags[TAG_MAX] = { {"title", HTML_NLAROUND}, {"body", HTML_NLALL}, {"div", HTML_NLAROUND}, - {"div", 0}, {"section", HTML_NLALL}, {"table", HTML_NLALL | HTML_INDENT}, {"tr", HTML_NLALL | HTML_INDENT}, @@ -25,7 +25,6 @@ enum htmltag { TAG_TITLE, TAG_BODY, TAG_DIV, - TAG_IDIV, TAG_SECTION, TAG_TABLE, TAG_TR, diff --git a/mdoc_html.c b/mdoc_html.c index 343c673e..b91e339c 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -1700,7 +1700,7 @@ mdoc_quote_pre(MDOC_ARGS) /* * Give up on semantic markup for now. * We cannot use TAG_SPAN because .Oo may contain blocks. - * We cannot use TAG_IDIV because we might be in a + * We cannot use TAG_DIV because we might be in a * phrasing context (like .Dl or .Pp); we cannot * close out a .Pp at this point either because * that would break the line. |