=================================================================== RCS file: /cvs/mandoc/man_html.c,v retrieving revision 1.127 retrieving revision 1.128 diff -u -p -r1.127 -r1.128 --- mandoc/man_html.c 2017/01/19 15:27:34 1.127 +++ mandoc/man_html.c 2017/01/20 23:51:00 1.128 @@ -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 * Copyright (c) 2013, 2014, 2015, 2017 Ingo Schwarze @@ -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);