PHP Classes

File: libs/Twig/doc/tags/filter.rst

Recommend this page to a friend!
  Classes of william amed   Raptor 2   libs/Twig/doc/tags/filter.rst   Download  
File: libs/Twig/doc/tags/filter.rst
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Raptor 2
Framework that takes routes from annotations
Author: By
Last change:
Date: 8 years ago
Size: 463 bytes
 

Contents

Class file image Download
``filter`` ========== Filter sections allow you to apply regular Twig filters on a block of template data. Just wrap the code in the special ``filter`` section: .. code-block:: jinja {% filter upper %} This text becomes uppercase {% endfilter %} You can also chain filters: .. code-block:: jinja {% filter lower|escape %} <strong>SOME TEXT</strong> {% endfilter %} {# outputs "&lt;strong&gt;some text&lt;/strong&gt;" #}