Hey, all.
Currently, helpers use self-closing tags which is an XHTML thing from a couple of decades ago. I’d love to have my helpers produce HTML instead of XHTML. Is there a configuration option for this? I’ve searched the form and around the web, but nothing turns up.
Example…
When the following is rendered:
<%= stylesheet_link_tag "main.css" %>
It becomes:
<link href=/stylesheets/main.css" rel="stylesheet" />
I want it to become (no self-closing trailing slash):
<link href="/stylesheets/main.css" rel="stylesheet">
Thanks in advance.