I would like to know if there is any tag to show part of a description
{{ post.description | tag-aqui }}
I would like to know if there is any tag to show part of a description
{{ post.description | tag-aqui }}
Since the intention is only to limit the number of characters, just use the filter slice
:
{{ post.description | slice:"0:255" }}
This will display the characters in the positions between 0 and 255.