tyler-sommer / stick

A golang port of the Twig templating engine
MIT License
183 stars 36 forks source link

fix array coerce #53

Open felixcarmona opened 1 year ago

felixcarmona commented 1 year ago

given the following variables: {"example": ["aaa", "bbb"]} (json as example) and the following template: {{example}}

it's showing empty, according to the original php implementation it should return aaa, bbb, or aaa if it only contains a single element, or empty if the list is empty