parse_xml
Coming soon
{% assign data = xml_string | parse_xml %}
{% log data %}Syntax
{{ xml_string | parse_xml }}Parameter
Description
Return Value
Examples
{% http url:"https://api.example.com/products.xml" method:"GET" as response %}
{% assign data = response.body | parse_xml %}
{% for product in data.products.product %}
{% log product.title %}
{% endfor %}{% assign data = file.content | parse_xml %}
{% log data %}Notes
Last updated