We are using the `catalog` lookup tag to display items from a users wishlist. However, some of the properties have a `$` in them, which breaks the dot.syntax when accessing properties.
{
...,
"metadata": {
"$price": 24.99,
"$inventory_policy": 1,
"$inventory_quantity": 5,
...
}
}
When I use the following syntax, I get an error message in the template editor and cannot save the template:
<div>
{% catalog itemID %}
{{ catalog_item.metadata.$price }}
{% endcatalog %}
</div>
Is there a way to escape the dollar sing `$` somehow?