Use em-space for column separation

This commit is contained in:
M66B 2020-05-16 17:52:06 +02:00
parent da852076ce
commit 32b4e135f3
1 changed files with 1 additions and 1 deletions

View File

@ -795,7 +795,7 @@ public class HtmlHelper {
// separate columns
if (hasVisibleContent(col.childNodes()))
if (col.nextElementSibling() != null)
col.appendText(" ");
col.appendText("\u2003"); // em space
if ("th".equals(col.tagName()))
col.tagName("strong");