I've been noticing that WTForms (and Flask-WTF) output <input> elements with a closing slash like so:

<input name="text" type="text" value="" />

My documents are HTML5 and therefore need no XHTML-type closure. How would I make WTForms output the input tag as such?

<input name="text" type="text" value="">

I've been tearing through the docs and the source code an am finding no clues. I could create a series of custom widgets, of course, but that seems a bit excessive for something so simple. Is there an easier way?

Or is this perhaps a Jinja2 configuration issue that I'm missing?

link|improve this question
6  
Why would you go out of your way to not be backwards compatible? – Alain Sep 27 '11 at 19:18
1  
I find the closing tags excessive and messy. Older browsers will render non-closed input elements just fine, so I see no compatibility problem here. I'm really fastidious about my markup. – Roshambo Sep 27 '11 at 19:33
feedback

1 Answer

up vote 1 down vote accepted

Use any revision past this one (or simply download tip) - WTForms is moving to the HTML5 way of generating form elements and adding some new widgets too (I believe). See this thread and this one for a bit more information.

* There is also an extension for WTForms that adds the XHTML back in, if you decide you need it.

link|improve this answer
Thanks so much! Looks like I'll have to download the tip until 0.6.4 is released. – Roshambo Sep 28 '11 at 22:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.