diff options
-rw-r--r-- | mandoc.css | 1 | ||||
-rw-r--r-- | mdoc_html.c | 7 | ||||
-rw-r--r-- | regress/mdoc/Bd/paragraph.out_html | 2 |
3 files changed, 7 insertions, 3 deletions
@@ -31,6 +31,7 @@ td { vertical-align: top; ul, ol, dl { margin-top: 0em; margin-bottom: 0em; } li, dt { margin-top: 1em; } +pre { font-family: inherit; } .permalink { border-bottom: thin dotted; color: inherit; diff --git a/mdoc_html.c b/mdoc_html.c index f698bc27..2dde0531 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -1,6 +1,6 @@ /* $Id$ */ /* - * Copyright (c) 2014-2020 Ingo Schwarze <schwarze@openbsd.org> + * Copyright (c) 2014-2021 Ingo Schwarze <schwarze@openbsd.org> * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * * Permission to use, copy, modify, and distribute this software for any @@ -930,7 +930,7 @@ mdoc_sx_pre(MDOC_ARGS) static int mdoc_bd_pre(MDOC_ARGS) { - char buf[16]; + char buf[20]; struct roff_node *nn; int comp; @@ -967,6 +967,9 @@ mdoc_bd_pre(MDOC_ARGS) strcmp(n->norm->Bd.offs, "left") != 0) (void)strlcat(buf, " Bd-indent", sizeof(buf)); + if (n->norm->Bd.type == DISP_literal) + (void)strlcat(buf, " Li", sizeof(buf)); + print_otag_id(h, TAG_DIV, buf, n); return 1; } diff --git a/regress/mdoc/Bd/paragraph.out_html b/regress/mdoc/Bd/paragraph.out_html index 22355ed1..df5fc6d6 100644 --- a/regress/mdoc/Bd/paragraph.out_html +++ b/regress/mdoc/Bd/paragraph.out_html @@ -7,7 +7,7 @@ </div> back to normal <p class="Pp">another paragraph</p> -<div class="Bd Pp" id="unfilled"> +<div class="Bd Pp Li" id="unfilled"> <pre><a class="permalink" href="#unfilled">unfilled</a> literal display <mark id="upara"></mark> |