aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/html.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2019-03-01 10:57:17 +0000
committerIngo Schwarze <schwarze@openbsd.org>2019-03-01 10:57:17 +0000
commitd3f52b2d9dc5815b73119982013465a10140e182 (patch)
tree7e7fd84dc23986618089c3c295a5e1f89df55a97 /html.c
parent122f08c3f3756fc23b3e070a0322f7250bddbfbf (diff)
downloadmandoc-d3f52b2d9dc5815b73119982013465a10140e182.tar.gz
mandoc-d3f52b2d9dc5815b73119982013465a10140e182.tar.zst
mandoc-d3f52b2d9dc5815b73119982013465a10140e182.zip
Wrap .Sh/.SH sections and .Ss/.SS subsections in HTML <section> elements
as recommended for accessibility by the HTML 5 standard. Triggered by a similar, but slightly different suggestion from Laura Morales <lauretas at mail dot com>.
Diffstat (limited to 'html.c')
-rw-r--r--html.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/html.c b/html.c
index 18141d60..a9a667ce 100644
--- a/html.c
+++ b/html.c
@@ -1,4 +1,4 @@
-/* $Id: html.c,v 1.252 2019/01/18 14:36:21 schwarze Exp $ */
+/* $Id: html.c,v 1.253 2019/03/01 10:57:17 schwarze Exp $ */
/*
* Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2011-2015, 2017-2019 Ingo Schwarze <schwarze@openbsd.org>
@@ -63,6 +63,7 @@ static const struct htmldata htmltags[TAG_MAX] = {
{"title", HTML_NLAROUND},
{"div", HTML_NLAROUND},
{"div", 0},
+ {"section", HTML_NLALL},
{"h1", HTML_NLAROUND},
{"h2", HTML_NLAROUND},
{"span", 0},