Skip to content Skip to footer navigation

Sentence List Modifier#

Turn a simple array into a friendly comma delimited list with the word "and" before the last item.

things:
- batman
- zombies
- scrunchies
yaml
yaml
I like {{ things | sentence_list }}.
antlers
antlers
I like batman, zombies, and scrunchies.
html
html

By default, the "glue" is the word "and", and will be translated appropriately. But, you can change it with the first argument:

I like {{ things | sentence_list('&') }}.
antlers
antlers
I like batman, zombies, & scrunchies.
html
html

The second argument controls the oxford comma. Set that to 0 and it'll get removed:

I like {{ things | sentence_list('and', 0) }}.
antlers
antlers
I like batman, zombies and scrunchies.
html
html