Whilst compressing the site with minify_html all double quotes in the code are stripped out. I don’t think should happen.
Have you been experiencing the same? How can I solve?
Thanks
Andrea
Whilst compressing the site with minify_html all double quotes in the code are stripped out. I don’t think should happen.
Have you been experiencing the same? How can I solve?
Thanks
Andrea
Have a look at the HTML minify options. By default, quotes are removed. You can override that like this:
activate :minify_html do |html|
html.remove_quotes = false # Preserve quotes
end
Lovely, thanks for the hint.