I save news text in DB as HTML:
<p>Hello, i'm a text!</p><p> More text</p>
When i render text like this
{{ post.body | raw }}
everything goes well, but i need to truncate text to 20-30 symbols for preview on main page. So, i tried
{{ p.body[:20] ~ '..' }}
and then text looks like
<p>Hello, i'm..
How can a hide than html tags? "|raw" filter also does not working while truncation. Please help