From 3d48d485cb9eca0283aa5f910c86e86a73242490 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Tue, 2 Sep 2014 21:09:32 -0700 Subject: [PATCH] html: Align table cells vertically at the top. This is what the ascii and cairo drivers do, and it looks best. --- src/output/html.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/output/html.c b/src/output/html.c index c181ed2eda..8d20a61b37 100644 --- a/src/output/html.c +++ b/src/output/html.c @@ -377,7 +377,7 @@ html_output_table (struct html_driver *html, { int x, y; - fputs ("\n", html->file); + fputs ("
\n", html->file); if (caption != NULL) { @@ -493,7 +493,7 @@ html_output_table (struct html_driver *html, fputs (" \n", html->file); } - fputs ("
\n\n", html->file); + fputs ("\n\n", html->file); } struct output_driver_factory html_driver_factory = -- 2.30.2