Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 276 Bytes

filter_trim.rst

File metadata and controls

13 lines (8 loc) · 276 Bytes

django

Removes whitespace at the start and end of a string.

For example:

{{ value|trim }}

When the value is " hello " then the output is "hello".

Internally, this calls z_string:trim/1 to perform the trimming.