diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2017-01-21 01:20:31 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2017-01-21 01:20:31 +0000 |
commit | 8f62c6e5d6916aac15b7d2af21533af26e2abc34 (patch) | |
tree | 1194ba2613ad676b40d490146e8b74331c426ab3 /man_html.c | |
parent | 33d7fd85e17c01d40d41eea4f0fc62ff1f1c74f0 (diff) | |
download | mandoc-8f62c6e5d6916aac15b7d2af21533af26e2abc34.tar.gz |
clean up the remaining class attributes
Diffstat (limited to 'man_html.c')
-rw-r--r-- | man_html.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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. */ |