Implements word wrapping by inserting a newline character every n
characters. Useful for plain text, but not typically for HTML.
Variable
blurb_text = 'You are pretty smart!'
Template
{{ blurb_text|wordwrap:10 }}
Result
You are pretty smart!
In a browser, whitespace is condensed, so the output would be:
You are pretty smart!
Commentary
Useful for plain text, but not typically for HTML.