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
What can cause problem that rainlab blog plugin doesnt render snipped pasted into post content?
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 %}
This works too
{{ post.content|content }}