summaryrefslogtreecommitdiffstats
path: root/mdoc_html.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2018-06-25 16:54:59 +0000
committerIngo Schwarze <schwarze@openbsd.org>2018-06-25 16:54:59 +0000
commit0c0a3d541585ee74abe4ebf86e66e0e7ac6b15f4 (patch)
treeba9ebb23828929de469f9d846d0cc49b4e2aad50 /mdoc_html.c
parenta54cd16044e037e3aa0a48950392b69f9ea530bd (diff)
downloadmandoc-0c0a3d541585ee74abe4ebf86e66e0e7ac6b15f4.tar.gz
Delete substantial amounts of code
now that we no longer use variable style= attributes.
Diffstat (limited to 'mdoc_html.c')
-rw-r--r--mdoc_html.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/mdoc_html.c b/mdoc_html.c
index 6ccda04d..495df583 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -719,8 +719,7 @@ mdoc_it_pre(MDOC_ARGS)
break;
case ROFFT_BODY:
if (n->child == NULL) {
- print_otag(h, TAG_DD, "ss?",
- "width", "auto");
+ print_otag(h, TAG_DD, "s", "width", "auto");
print_text(h, "\\ ");
} else
print_otag(h, TAG_DD, "");
@@ -1175,7 +1174,7 @@ mdoc_fn_pre(MDOC_ARGS)
for (n = n->child->next; n; n = n->next) {
if (NODE_SYNPRETTY & n->flags)
- t = print_otag(h, TAG_VAR, "cTss?", "Fa",
+ t = print_otag(h, TAG_VAR, "cTs", "Fa",
"white-space", "nowrap");
else
t = print_otag(h, TAG_VAR, "cT", "Fa");