source@mandoc.bsd.lv
 help / color / mirror / Atom feed
* mandoc: Put the HTML comment containing the Copyright header (if any)
@ 2022-07-04 14:38 schwarze
  0 siblings, 0 replies; only message in thread
From: schwarze @ 2022-07-04 14:38 UTC (permalink / raw)
  To: source

Log Message:
-----------
Put the HTML comment containing the Copyright header (if any)
between the <head> and the <body> rather than before the <head>
because the <meta charset="utf-8"/> element ought to be within  
the first 1024 bytes of the HTML code.
Issue found with validator.w3.org.

Modified Files:
--------------
    mandoc:
        man_html.c
        mdoc_html.c

Revision Data
-------------
Index: man_html.c
===================================================================
RCS file: /home/cvs/mandoc/mandoc/man_html.c,v
retrieving revision 1.180
retrieving revision 1.181
diff -Lman_html.c -Lman_html.c -u -p -r1.180 -r1.181
--- man_html.c
+++ man_html.c
@@ -123,11 +123,11 @@ html_man(void *arg, const struct roff_me
 	if ((h->oflags & HTML_FRAGMENT) == 0) {
 		print_gen_decls(h);
 		print_otag(h, TAG_HTML, "");
-		if (n != NULL && n->type == ROFFT_COMMENT)
-			print_gen_comment(h, n);
 		t = print_otag(h, TAG_HEAD, "");
 		print_man_head(man, h);
 		print_tagq(h, t);
+		if (n != NULL && n->type == ROFFT_COMMENT)
+			print_gen_comment(h, n);
 		print_otag(h, TAG_BODY, "");
 	}
 
Index: mdoc_html.c
===================================================================
RCS file: /home/cvs/mandoc/mandoc/mdoc_html.c,v
retrieving revision 1.345
retrieving revision 1.346
diff -Lmdoc_html.c -Lmdoc_html.c -u -p -r1.345 -r1.346
--- mdoc_html.c
+++ mdoc_html.c
@@ -293,11 +293,11 @@ html_mdoc(void *arg, const struct roff_m
 	if ((h->oflags & HTML_FRAGMENT) == 0) {
 		print_gen_decls(h);
 		print_otag(h, TAG_HTML, "");
-		if (n != NULL && n->type == ROFFT_COMMENT)
-			print_gen_comment(h, n);
 		t = print_otag(h, TAG_HEAD, "");
 		print_mdoc_head(mdoc, h);
 		print_tagq(h, t);
+		if (n != NULL && n->type == ROFFT_COMMENT)
+			print_gen_comment(h, n);
 		print_otag(h, TAG_BODY, "");
 	}
 
--
 To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-07-04 14:38 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-04 14:38 mandoc: Put the HTML comment containing the Copyright header (if any) schwarze

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).