Skip to content

Instantly share code, notes, and snippets.

@morgyface
Created May 12, 2020 11:27
Show Gist options
  • Save morgyface/e610a8f6ac2812ff43a2ac3c70435b4d to your computer and use it in GitHub Desktop.
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
{{ 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