techwilk/twig-linewrap

TWIG filter to wrap lines exceeding the specified length.

v1.0 2017-07-06 18:40 UTC

This package is auto-updated.

Last update: 2024-05-20 07:06:16 UTC


README

Total Downloads Latest Stable Version License

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

  1. Install through composer.
composer require techwilk/twig-linewrap
  1. 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 ") }}