Created
May 12, 2020 11:27
-
-
Save morgyface/e610a8f6ac2812ff43a2ac3c70435b4d to your computer and use it in GitHub Desktop.
Nunjucks | 11ty | Truncate, trim or slice. Return part of a string in nunjucks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{ set cats = "meowers" }} | |
{{ cats.slice(1, -1) }} | |
{# Returns: eower #} | |
{{ cats.slice(3) }} | |
{# Returns: wers #} | |
{{ set dogs = " woofers " }} | |
{{ dogs | trim }} | |
{# Removes white space and returns: woofers #} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment