79788938

Date: 2025-10-13 05:18:37
Score: 0.5
Natty:
Report link

pretty_html_table escapes HTML by default. After building the table, just unescape the <br> tags:

html_table = build_table(table, "green_dark")
html_table = html_table.replace("&lt;br&gt;", "<br>")

Now the <br> tags render as real line breaks in your email.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sakshi Sharma