summaryrefslogtreecommitdiffstats
path: root/man_html.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2017-01-21 01:20:31 +0000
committerIngo Schwarze <schwarze@openbsd.org>2017-01-21 01:20:31 +0000
commit8f62c6e5d6916aac15b7d2af21533af26e2abc34 (patch)
tree1194ba2613ad676b40d490146e8b74331c426ab3 /man_html.c
parent33d7fd85e17c01d40d41eea4f0fc62ff1f1c74f0 (diff)
downloadmandoc-8f62c6e5d6916aac15b7d2af21533af26e2abc34.tar.gz
clean up the remaining class attributes
Diffstat (limited to 'man_html.c')
-rw-r--r--man_html.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/man_html.c b/man_html.c
index eb4421ae..54d26320 100644
--- a/man_html.c
+++ b/man_html.c
@@ -455,16 +455,16 @@ man_IP_pre(MAN_ARGS)
const struct roff_node *nn;
if (n->type == ROFFT_BODY) {
- print_otag(h, TAG_DD, "");
+ print_otag(h, TAG_DD, "c", "It-tag");
return 1;
} else if (n->type != ROFFT_HEAD) {
- print_otag(h, TAG_DL, "");
+ print_otag(h, TAG_DL, "c", "Bl-tag");
return 1;
}
/* FIXME: width specification. */
- print_otag(h, TAG_DT, "");
+ print_otag(h, TAG_DT, "c", "It-tag");
/* For IP, only print the first header element. */