{% if post.truncate_char and post.truncate_char is matching("^nil$") %} {% set truncate_char = "" %} {% else %} {% set truncate_char = "…" %} {% endif %} {{ post.raw | striptags | truncate(length=post.truncate | default(value=100), end=truncate_char) | safe }}
Read more …