This plugin adds filter for Markdown body excerpt.
To enable the plugin run this command:
$ lektor plugins add markdown-excerpt
Plugin provides the |excerpt
filter that can be used to render first
paragraph of Markdown:
{{ post.body|excerpt }}
It takes one optional argument which is the separator for the excerpt:
{{ post.body|excerpt:'\n\n##' }}