tech@mandoc.bsd.lv
 help / color / mirror / Atom feed
From: Anna Vyalkova <cyber@sysrq.in>
To: tech@mandoc.bsd.lv
Subject: [PATCH 1/3] Wrap manual header in the "<header>" tag
Date: Tue, 28 Jun 2022 23:18:42 +0500	[thread overview]
Message-ID: <20220628181844.15484-2-cyber@sysrq.in> (raw)
In-Reply-To: <20220628181844.15484-1-cyber@sysrq.in>

---
 html.c      | 1 +
 html.h      | 1 +
 man_html.c  | 4 +++-
 mandoc.css  | 3 ++-
 mdoc_html.c | 4 +++-
 5 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/html.c b/html.c
index 0199edb0..f97c9eee 100644
--- a/html.c
+++ b/html.c
@@ -70,6 +70,7 @@ static	const struct htmldata htmltags[TAG_MAX] = {
 	{"div",		HTML_NLAROUND},
 	{"section",	HTML_NLALL},
 	{"nav",		HTML_NLALL},
+	{"header",	HTML_NLALL},
 	{"table",	HTML_NLALL | HTML_INDENT},
 	{"tr",		HTML_NLALL | HTML_INDENT},
 	{"td",		HTML_NLAROUND},
diff --git a/html.h b/html.h
index 32742461..87dd057c 100644
--- a/html.h
+++ b/html.h
@@ -30,6 +30,7 @@ enum	htmltag {
 	TAG_DIV,
 	TAG_SECTION,
 	TAG_NAV,
+	TAG_HEADER,
 	TAG_TABLE,
 	TAG_TR,
 	TAG_TD,
diff --git a/man_html.c b/man_html.c
index 5f715cf0..062ce899 100644
--- a/man_html.c
+++ b/man_html.c
@@ -263,13 +263,14 @@ print_man_node(MAN_ARGS)
 static void
 man_root_pre(const struct roff_meta *man, struct html *h)
 {
-	struct tag	*t, *tt;
+	struct tag	*th, *t, *tt;
 	char		*title;
 
 	assert(man->title);
 	assert(man->msec);
 	mandoc_asprintf(&title, "%s(%s)", man->title, man->msec);
 
+	th = print_otag(h, TAG_HEADER, "");
 	t = print_otag(h, TAG_TABLE, "c", "head");
 	tt = print_otag(h, TAG_TR, "");
 
@@ -285,6 +286,7 @@ man_root_pre(const struct roff_meta *man, struct html *h)
 	print_otag(h, TAG_TD, "c", "head-rtitle");
 	print_text(h, title);
 	print_tagq(h, t);
+	print_tagq(h, th);
 	free(title);
 }
 
diff --git a/mandoc.css b/mandoc.css
index 73f5c668..4cfb51e8 100644
--- a/mandoc.css
+++ b/mandoc.css
@@ -53,7 +53,8 @@ table.results {	margin-top: 1em;
 
 /* Header and footer lines. */
 
-table.head {	width: 100%;
+header > table {
+		width: 100%;
 		border-bottom: 1px dotted #808080;
 		margin-bottom: 1em;
 		font-size: smaller; }
diff --git a/mdoc_html.c b/mdoc_html.c
index a0e29c72..cf771b75 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -470,7 +470,7 @@ mdoc_root_post(const struct roff_meta *meta, struct html *h)
 static int
 mdoc_root_pre(const struct roff_meta *meta, struct html *h)
 {
-	struct tag	*t, *tt;
+	struct tag	*th, *t, *tt;
 	char		*volume, *title;
 
 	if (NULL == meta->arch)
@@ -485,6 +485,7 @@ mdoc_root_pre(const struct roff_meta *meta, struct html *h)
 		mandoc_asprintf(&title, "%s(%s)",
 		    meta->title, meta->msec);
 
+	th = print_otag(h, TAG_HEADER, "");
 	t = print_otag(h, TAG_TABLE, "c", "head");
 	tt = print_otag(h, TAG_TR, "");
 
@@ -499,6 +500,7 @@ mdoc_root_pre(const struct roff_meta *meta, struct html *h)
 	print_otag(h, TAG_TD, "c", "head-rtitle");
 	print_text(h, title);
 	print_tagq(h, t);
+	print_tagq(h, th);
 
 	free(title);
 	free(volume);
-- 
2.35.1

--
 To unsubscribe send an email to tech+unsubscribe@mandoc.bsd.lv


  reply	other threads:[~2022-06-28 18:19 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-28 18:18 [PATCH 0/3] Add HTML landmarks Anna Vyalkova
2022-06-28 18:18 ` Anna Vyalkova [this message]
2022-07-03 17:24   ` [PATCH 1/3] Wrap manual header in the "<header>" tag Ingo Schwarze
2022-07-03 18:49     ` Anna Vyalkova
2022-07-03 20:12       ` Ingo Schwarze
2022-07-03 20:51         ` Anna “CyberTailor”
2022-07-05 15:16           ` Ingo Schwarze
2022-07-05 16:15             ` Anna
2022-07-05 18:45               ` Ingo Schwarze
2022-07-05 19:03                 ` Anna
2022-07-05 21:39                   ` Ingo Schwarze
2022-06-28 18:18 ` [PATCH 2/3] Wrap manual text in the "<main>" tag Anna Vyalkova
2022-07-03 14:41   ` Ingo Schwarze
2022-06-28 18:18 ` [PATCH 3/3] Wrap manual footer in the "<footer>" tag Anna Vyalkova

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220628181844.15484-2-cyber@sysrq.in \
    --to=cyber@sysrq.in \
    --cc=tech@mandoc.bsd.lv \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).