locomotivecms / wagon

Wagon is a command line tool that let's you develop for Locomotive right on your local machine.
https://www.locomotivecms.com
MIT License
188 stars 117 forks source link

Inconsistent rendering of Liquid Arrays when using wagon serve #390

Open greyskin opened 4 years ago

greyskin commented 4 years ago

The following:

{{ post.tags | join: ', ' }} {{ post.tags | split: ',' | join: ', ' }}

when pushed to station.locomotive.works they are rendered:

item 1, item 2, item 3

["item 1", "item 2", "item 3"]

respectively. This is what I expect.

However, when served locally using wagon serve both are rendered:

item 1, item 2, item 3