bugix: missed some quotation marks

This commit is contained in:
gamerdonkey 2025-09-13 03:47:32 +00:00
parent 4a462d4123
commit e178ae4079

View File

@ -14,7 +14,7 @@ class TableCell:
def to_html(self):
if self.is_header:
html = f"<th title={self.description}>{self.name}</th>"
html = f"<th title='{self.description}'>{self.name}</th>"
elif not self.name:
html = f'<td colspan="{self.colspan}" class="filler"></td>'
else: