Rainlab blog snippets doesn't render

What can cause problem that rainlab blog plugin doesnt render snipped pasted into post content?

  • same snippet is rendered in ranlab pages
  • html source in frontend shows <figure …> tag
  • tested in wyswig and mardown editor

you need to provide some code an where you use it
for example, twig is not parsed on content files…

Might be as simple as sourrounding the output with the content filter (for OCMS v3):

{% apply content %}
   {{ post.content|raw }}
{% endapply %}
2 Likes

This works too

{{ post.content|content }}
2 Likes

@marco.grueter @daft both solutions works. Thank you.