Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@wvpv
Last active February 21, 2020 14:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wvpv/8bec8dc8774fdd1fedb25a69071ac905 to your computer and use it in GitHub Desktop.
Save wvpv/8bec8dc8774fdd1fedb25a69071ac905 to your computer and use it in GitHub Desktop.
ASC XML sample
<?xml version="1.0" encoding="UTF-8"?>
<cart>
<items>
<item>
<sku><![CDATA[123]]></sku>
<name><![CDATA[Square]]></name>
<url><![CDATA[https://example.com?sku=123]]></url>
</item>
<item>
<sku><![CDATA[456]]></sku>
<name><![CDATA[Circle]]></name>
<url><![CDATA[https://example.com?sku=456]]></url>
</item>
<item>
<sku><![CDATA[789]]></sku>
<name><![CDATA[Triangle]]></name>
<url><![CDATA[https://example.com?sku=789]]></url>
</item>
</items>
</cart>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment