aboutsummaryrefslogtreecommitdiffstatshomepage
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
commit1ff4a5800512d80bdb3345375ad249c237f230e5 (patch)
tree1335ef70852a78c41dee8cf41f8706d5241cdcd6 /man_html.c
parent0f78e8c2a778806400421a2633736fcd6eb9afd6 (diff)
downloadmandoc-1ff4a5800512d80bdb3345375ad249c237f230e5.tar.gz
mandoc-1ff4a5800512d80bdb3345375ad249c237f230e5.tar.zst
mandoc-1ff4a5800512d80bdb3345375ad249c237f230e5.zip
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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/man_html.c b/man_html.c
index 14b3d42a..028dc735 100644
--- a/man_html.c
+++ b/man_html.c
@@ -1,4 +1,4 @@
-/* $Id: man_html.c,v 1.127 2017/01/19 15:27:34 schwarze Exp $ */
+/* $Id: man_html.c,v 1.128 2017/01/20 23:51:00 schwarze Exp $ */
/*
* Copyright (c) 2008-2012, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2013, 2014, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org>
@@ -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);