techwilk / twig-linewrap
TWIG filter to wrap lines exceeding the specified length.
Installs: 3 166
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- twig/twig: ~1.27|~2.0
This package is auto-updated.
Last update: 2024-10-20 08:02:29 UTC
README
TWIG filter to wrap lines over a specified length with a newline, or optionally pass in a different separator.
Designed for wrapping iCal files to 75 chars max length, although should be useful in any application requiring line wrapping.
Installation
- Install through composer.
composer require techwilk/twig-linewrap
- Then add as an extension to TWIG:
$twig->addExtension(new \TechWilk\Twig\Extension\LineWrap());
Use
Use as a standard twig filter, passing in a maximum length after which to wrap:
{{ 'this is some text that goes on forever' | linewrap(10) }}
outputs:
this is so
me text th
at goes on
forever
Optionally pass in a different separator (such as for iCal wrapping):
{{ 'this is some text that goes on forever' | linewrap(75, "\n ") }}