aboutsummaryrefslogtreecommitdiffstatshomepage
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
commit46475ae69cd0362524d880fbc82985ec1661d3f4 (patch)
tree3759c0c6674c5e9965f0ca2f2f7dca93b485ce09 /man_html.c
parent1ff4a5800512d80bdb3345375ad249c237f230e5 (diff)
downloadmandoc-46475ae69cd0362524d880fbc82985ec1661d3f4.tar.gz
mandoc-46475ae69cd0362524d880fbc82985ec1661d3f4.tar.zst
mandoc-46475ae69cd0362524d880fbc82985ec1661d3f4.zip
clean up the remaining class attributes
Diffstat (limited to 'man_html.c')
-rw-r--r--man_html.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/man_html.c b/man_html.c
index 028dc735..641e0e33 100644
--- a/man_html.c
+++ b/man_html.c
@@ -1,4 +1,4 @@
-/* $Id: man_html.c,v 1.128 2017/01/20 23:51:00 schwarze Exp $ */
+/* $Id: man_html.c,v 1.129 2017/01/21 01:20:32 schwarze Exp $ */
/*
* Copyright (c) 2008-2012, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2013, 2014, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org>
@@ -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. */