Learn

dump

Converts a named-list to a dump of its contents.

Sample Usage

{{ my_list|dump }}

If {{ my_list }} looks like this:

my_list:
  one: first
  two: second
  three: third

This will output:

one: first
two: second
three: third

This modifier will also indent multi-level lists. You’ll probably find this modifier works best with the {{ _debug }} variable.

Parameters

This modifier has no parameters.

This article was last updated on March 30th, 2016. Find an error? Please let us know!