emencia / emencia-django-newsletter

An app for sending newsletter by email to a contact list.
189 stars 72 forks source link

A simple option to turn off HTML prettify #45

Closed drye closed 12 years ago

drye commented 12 years ago

I need the ability to turn the prettifyer off, because the additional white space that is generated by Beautiful soup's prettify can cause Internet Explorer to render additional non-wanted margins in tables.

With this patch you can simply add

NEWSLETTER_USE_PRETTIFY = False

to your settings, and you're safe!

(this addresses https://github.com/Fantomas42/emencia-django-newsletter/issues/42)

Fantomas42 commented 12 years ago

Thank you for this enhancement. :)