Hi Team
I need some help. I am unable to transform my XML to JSON using Liquid template in VSS code using Shopify Preview extension. Is there something wrong that I am doing? However JSON to JSON liquid template just works fine .
THE XML:
The Template
{
"Employee Name" : "{{ content.root.FirstName }} {{ content.root.LastName }}",
"Company Name" : "{{ content.root.Company }}",
"Date Of Joining" : "{{ "now" | Date: "MM/dd/yyyy" }}",
"Department" : "{{ content.root.department }}",
"Technology" : "{{ content.root.Work | Size }}",
"Skills" : [
{% for Skill in content.root.Work %}
{
"Name" : "{{ Skill.skil }}",
"Marks" : {{ Skill.Mark }}
},
{% endfor %}
] }
Could you please help me on this ?
Regards
Gaurav