Django: Why is this output HTML-escaped

Viewed 8848

In my template I'm writing:

<div class="content video">{{ each.text }}</div>

And I'm getting:

<iframe width="300" height="200" src="http://www.youtube.com/embed/1C1HLH-hOZU" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowfullscreen></iframe>

I want that text to be the part of the mark up,not as text.What say?

1 Answers
Related