commit b857c0c7066cedfb65052939c52772d7ed517c22
parent f174978693025a71ef7b99e416b75eb3fad3eeda
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Tue, 16 Sep 2025 21:55:30 +0200
Correction of the HTML header of generated pages
It referred to the wrong CSS and prefixed all page titles as if it were
a page on Meso-Star.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/sty-genhead.c b/src/sty-genhead.c
@@ -577,8 +577,8 @@ print_head(const char* root, const char* label, const char* lang)
printf("<head>\n");
printf(" <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n");
printf(" <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n");
- printf(" <title>|M|S> %s</title>\n", label);
- printf(" <link rel=\"stylesheet\" title=\"default\" href=\"%smeso.css\">\n", root);
+ printf(" <title>%s</title>\n", label);
+ printf(" <link rel=\"stylesheet\" title=\"default\" href=\"%ssty.css\">\n", root);
printf("</head>\n");
printf("<body>\n");
}