diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2022-07-06 16:05:40 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2022-07-06 16:05:40 +0000 |
commit | 655bab118450e497db31f6a97e160a70b360167d (patch) | |
tree | 1be9a40c8de4230d9ec3d3832ba71e6cd4605e63 /mdoc_html.c | |
parent | 86b29a940ed5f29ec1351a37872eb5a4e0175dc3 (diff) | |
download | mandoc-655bab118450e497db31f6a97e160a70b360167d.tar.gz |
https://www.w3.org/WAI/ARIA/apg/practices/names-and-descriptions/ says:
"Start names with a capital letter;
it helps some screen readers speak them with appropriate inflection."
Anna Vyalkova already did that correctly when sending patches,
but i ruined it when committing, so fix it now.
Diffstat (limited to 'mdoc_html.c')
-rw-r--r-- | mdoc_html.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mdoc_html.c b/mdoc_html.c index 4e2eeefa..7dab43e7 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -456,7 +456,7 @@ mdoc_root_post(const struct roff_meta *meta, struct html *h) 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); @@ -489,7 +489,7 @@ mdoc_root_pre(const struct roff_meta *meta, struct html *h) meta->title, meta->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); |