lektor-markdown-excerpt

Adds filter for Markdown body excerpt.


License
BSD-3-Clause
Install
pip install lektor-markdown-excerpt==0.1

Documentation

lektor-markdown-excerpt

This plugin adds filter for Markdown body excerpt.

Enabling the Plugin

To enable the plugin run this command:

$ lektor plugins add markdown-excerpt

In Templates

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##' }}