mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 00:03:10 +00:00
now also allow for ending parens
from following, 1, 2, 4 and 5 match, rest are ignored.
{doc | to_nice_json}}
{{(doc | to_nice_json)}}
{{doc | to_nice_json| from_json}}
{{doc | to_nice_json()}}
{{doc | to_nice_json(indent=2)}}
{{doc | to_nice_json(indent=2) | from_json()}}
{{doc | to_nice_json(indent=2) | from_json}}
fixes #37579