From c1c1046eb88a69d9f559370b1d521af13b115110 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Wed, 6 Jul 2022 14:34:59 +0000 Subject: While the HTML standard allows multiple

elements in the same document,

is intended for top level headers, and most of the sections in a manual page can hardly be considered top-level. It is more usual to use

only for the main title of the document of for the site name. Consequently, move .Sh/.SH from

to

and .Ss/.SS from

to

, freeing

for use by header.html in man.cgi(8). Discussed with Anna Vyalkova . --- html.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'html.h') diff --git a/html.h b/html.h index 38391c26..cbe832d6 100644 --- a/html.h +++ b/html.h @@ -40,8 +40,8 @@ enum htmltag { TAG_DL, TAG_DT, TAG_DD, - TAG_H1, TAG_H2, + TAG_H3, TAG_P, TAG_PRE, TAG_A, -- cgit