Skip to content
This repository has been archived by the owner on Mar 7, 2024. It is now read-only.

Latest commit

 

History

History
18 lines (14 loc) · 477 Bytes

03_Twig-Helpers.md

File metadata and controls

18 lines (14 loc) · 477 Bytes

Twig Helpers

Obfuscate email

Type: filter

If you need to hide email addresses to bots, simply apply this filter.

{{ '[email protected]'|obfuscateEmail }}

Truncate

Type: filter

If you want to "cut" a string, you can use this filter.

{{ 'A string that is too long and has to be shortened.'|truncate(20) }}

This function actually provides even more functionality, but have a look yourself.