Markdown editor

Hi all,

I have added a markdown editor in my blueprint, it shows the textarea in the admin panel.
Only thing is that it is not rendering markdown in my main template.

Any thoughts?

thx.

The markdown editor merely is an interface to edit and store the markdown.

On the frontend, you are probably getting the raw markdown when accessing this field. Easy fix though, just use the Markdown Twig Filter to convert it to HTML on the fly:

{{ page.header.my_field|markdown }}

great, thanx !