=================================================================== RCS file: /cvs/mandoc/man_html.c,v retrieving revision 1.182 retrieving revision 1.184 diff -u -p -r1.182 -r1.184 --- mandoc/man_html.c 2022/07/05 21:25:29 1.182 +++ mandoc/man_html.c 2022/07/06 16:05:40 1.184 @@ -1,4 +1,4 @@ -/* $Id: man_html.c,v 1.182 2022/07/05 21:25:29 schwarze Exp $ */ +/* $Id: man_html.c,v 1.184 2022/07/06 16:05:40 schwarze Exp $ */ /* * Copyright (c) 2013-2015,2017-2020,2022 Ingo Schwarze * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons @@ -271,7 +271,7 @@ man_root_pre(const struct roff_meta *man, struct html mandoc_asprintf(&title, "%s(%s)", man->title, man->msec); t = print_otag(h, TAG_DIV, "cr?", "head", "doc-pageheader", - "aria-label", "manual header line"); + "aria-label", "Manual header line"); print_otag(h, TAG_SPAN, "c", "head-ltitle"); print_text(h, title); @@ -294,7 +294,7 @@ man_root_post(const struct roff_meta *man, struct html struct tag *t; t = print_otag(h, TAG_DIV, "cr?", "foot", "doc-pagefooter", - "aria-label", "manual footer line"); + "aria-label", "Manual footer line"); print_otag(h, TAG_SPAN, "c", "foot-left"); print_stagq(h, t); @@ -316,10 +316,10 @@ man_SH_pre(MAN_ARGS) enum htmltag tag; if (n->tok == MAN_SH) { - tag = TAG_H1; + tag = TAG_H2; class = "Sh"; } else { - tag = TAG_H2; + tag = TAG_H3; class = "Ss"; } switch (n->type) {