From 2b220b7c394c841b1420db87029556d43e39ee0f Mon Sep 17 00:00:00 2001 From: John Darrington Date: Sat, 4 Jul 2020 13:18:08 +0200 Subject: [PATCH] HTML output driver: Correct typo VALIGN was incorrectly typed as ALIGN --- 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 f96e70ccb4..635ae5254e 100644 --- a/src/output/html.c +++ b/src/output/html.c @@ -526,7 +526,7 @@ html_output_table (struct html_driver *html, const struct table_item *item) } if (cell.style->cell_style.valign != TABLE_VALIGN_TOP) - fprintf (html->file, " ALIGN=\"%s\"", + fprintf (html->file, " VALIGN=\"%s\"", (cell.style->cell_style.valign == TABLE_VALIGN_BOTTOM ? "BOTTOM" : "MIDDLE")); -- 2.30.2