From f2cd31f7b1219292350a798bf4c2c38d06ccca14 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Mon, 28 Dec 2020 14:13:43 -0800 Subject: [PATCH] html: Make cells be font-weight: normal by default. This overrides typical web browser defaults. That seems reasonable, since the driver styles all the cells according to the user specifications. We could just use for all cells, but there might be semantic value in having properly marked header cells. --- src/output/html.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/output/html.c b/src/output/html.c index 8c4c14a180..df7003a4a9 100644 --- a/src/output/html.c +++ b/src/output/html.c @@ -161,7 +161,7 @@ put_header (struct html_driver *html) "caption {\n" " text-align: left\n" "}\n" - + "th { font-weight: normal }\n" "a:link {\n" " color: #1f00ff;\n" "}\n" -- 2.30.2