From c797970f353cb09a85dbda5224233641718c1142 Mon Sep 17 00:00:00 2001 From: Lars Pieschel <26352100+lapie1@users.noreply.github.com> Date: Tue, 6 Apr 2021 13:52:00 +0200 Subject: [PATCH] Fixed table not having a closing tag. --- jupyter-rdfify/table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyter-rdfify/table.py b/jupyter-rdfify/table.py index 14ed29c..6e252fd 100644 --- a/jupyter-rdfify/table.py +++ b/jupyter-rdfify/table.py @@ -85,7 +85,7 @@ def html_table(row_iter): res += html_table_row(next(row_iter), True) for row in row_iter: res += html_table_row(row) - return res + return res + "</table>" def html_table_row(row, header=False): -- GitLab