From 003a460f50fa738886f29d5c3f48c02792eb3c4a Mon Sep 17 00:00:00 2001 From: Jacques Fu Date: Tue, 12 Jan 2021 14:19:27 -0500 Subject: [PATCH] fixed caption is not recognized as content --- datadict_grt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datadict_grt.py b/datadict_grt.py index 2d31a11..02fa364 100644 --- a/datadict_grt.py +++ b/datadict_grt.py @@ -371,7 +371,7 @@ def save(html, path): def table_as_html(table): """Return table as an HTML table.""" markup = "".format(table.name) - markup += "".format(table.name) + markup += "

{0}

".format(table.name) markup += "".format(escape(table.comment)) markup += html_table_header()
{0}
{0}