Skip to content

Instantly share code, notes, and snippets.

@ferryferry
Last active March 29, 2019 11:21
Show Gist options
  • Save ferryferry/9961feffaa35a3103b7cfd6d54a85975 to your computer and use it in GitHub Desktop.
Save ferryferry/9961feffaa35a3103b7cfd6d54a85975 to your computer and use it in GitHub Desktop.
Liquid template to transform product data
{
"items": [{
"itemNo": "1234",
"name": "Design lamp",
"longDesc": "It lights up"
},
{
"itemNo": "1234",
"name": "Design lamp",
"longDesc": "It lights up"
}
]
}
[{
"number": "1234",
"name": "Design lamp",
"description": "It lights up"
}, {
"number": "1234",
"name": "Design lamp",
"description": "It lights up"
}]
[{% for product in items %}{
"number": "{{product.itemNo}}",
"name": "{{product.name}}",
"description": "{{product.longDesc}}"
}{% if forloop.last == false%}, {% endif %}{% endfor %}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment