You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have seen there are a bunch of other white space issue (#21, #18). This seems hard to solve so it works for everyone...my case is within a p tag:
<p><strong>what </strong>
on a new line.
</p>
in this snippet, both the space within strong and also the spaces created by newline and tab spaces, are removed. I would excpect that either, nothing is touched within the p tag, or, that at least on whitespace would remain for where there were many, before. Example: convert newline + 8*space to on space.
I've seen that the htmlmin project (not that much of docs, no django integration) allows tags to be excluded, could this be an option (with pre and textarea in there by default)?
Final note: After collecting issues and stuff, it seems it is already possible, with the EXCLUDE_TAGS_FROM_MINIFYING setting...will check and report - this would certainly be something for docs! huge time saver :)
The text was updated successfully, but these errors were encountered:
I have seen there are a bunch of other white space issue (#21, #18). This seems hard to solve so it works for everyone...my case is within a p tag:
in this snippet, both the space within
strong
and also the spaces created by newline and tab spaces, are removed. I would excpect that either, nothing is touched within thep
tag, or, that at least on whitespace would remain for where there were many, before. Example: convertnewline + 8*space
to on space.I've seen that the htmlmin project (not that much of docs, no django integration) allows tags to be excluded, could this be an option (with
pre
andtextarea
in there by default)?Final note: After collecting issues and stuff, it seems it is already possible, with the
EXCLUDE_TAGS_FROM_MINIFYING
setting...will check and report - this would certainly be something for docs! huge time saver :)The text was updated successfully, but these errors were encountered: