I should be able to excerpt from a post like this in a jinja template.
{{post['content']|markdown | truncate(489)}}
Is there a way to show the first paragraph of the post as an excerpt.
Posts are stored in mongodb as markdown files.
Update : The code snippet which @davidism points out makes exactly what I would like to do.