From: Ben Pfaff Date: Mon, 28 Dec 2020 22:13:43 +0000 (-0800) Subject: html: Make cells be font-weight: normal by default. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f2cd31f7b1219292350a798bf4c2c38d06ccca14;p=pspp 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. --- 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"