summaryrefslogtreecommitdiffstats
path: root/man_html.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2017-01-20 23:51:00 +0000
committerIngo Schwarze <schwarze@openbsd.org>2017-01-20 23:51:00 +0000
commit33d7fd85e17c01d40d41eea4f0fc62ff1f1c74f0 (patch)
tree9f40286dc89ecc9fc034c508543e8700c5d32bec /man_html.c
parent8ffdcc1d064b1e2ad2d427f359ac7fefc67db02b (diff)
downloadmandoc-33d7fd85e17c01d40d41eea4f0fc62ff1f1c74f0.tar.gz
Standardize class attributes for semantic macros.
Correct markup for .Va and iprove markup for .Dv, .Er, .Ev while here.
Diffstat (limited to 'man_html.c')
-rw-r--r--man_html.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/man_html.c b/man_html.c
index a2c4b1e6..eb4421ae 100644
--- a/man_html.c
+++ b/man_html.c
@@ -517,7 +517,7 @@ man_OP_pre(MAN_ARGS)
print_text(h, "[");
h->flags |= HTML_NOSPACE;
- tt = print_otag(h, TAG_SPAN, "c", "opt");
+ tt = print_otag(h, TAG_SPAN, "c", "Op");
if (NULL != (n = n->child)) {
print_otag(h, TAG_B, "");
@@ -603,7 +603,7 @@ man_UR_pre(MAN_ARGS)
assert(n->type == ROFFT_HEAD);
if (n->child != NULL) {
assert(n->child->type == ROFFT_TEXT);
- print_otag(h, TAG_A, "ch", "link-ext", n->child->string);
+ print_otag(h, TAG_A, "ch", "Lk", n->child->string);
}
assert(n->next->type == ROFFT_BODY);