word: "Bird"
word_with_spaces: " Spacebird\n"
list: [1, 2, 3]
map:
  a: b
  c: d
---
lower: {{ word|lower }}
upper: {{ word|upper }}
replace: {{ word|replace("B", "th") }}
escape: {{ "<"|escape }}
double-escape: {{ "<"|escape|escape }}
safe: {{ "<"|safe|escape }}
list-length: {{ list|length }}
map-length: {{ map|length }}
string-length: {{ word|length }}
reverse-list: {{ list|reverse }}
reverse-string: {{ word|reverse }}
trim: |{{ word_with_spaces|trim }}|
trim-bird: {{ word|trim("Bd") }}
join-default: {{ list|join }}
join-pipe: {{ list|join("|") }}
join_string: {{ word|join('-') }}
