helpers to produce HTML (not XHTML)

Hi,

In a form_for :comment block, Rails turns

<%= f.text_field :name %>

into

<input id="comment_name" name="comment[name]" size="30" type="text" />

How can I get Rails not to add the closing slash so that it is plain HTML and not XHTML?

Thanks, Peter

Isn’t that valid HTML as well? Why would you want to do this?