Does Volt have a function or filter for doing a truncation, with an optional appended character? Where the appended character would only be appended if the original string was longer than the desired truncate length?
For example:
{{ truncate('This is a long string',7,'...') }}
renders as This is...
Whereas
{{ truncate('Short',7,'...') }}
renders as Short
I couldn't readily find something like this in the documentation.