I am working with the following:
<img src=’{{ “{{ image }}” }}’ alt=’{{ “{{ name }}” }}’ … other stuff />
The html produced for alt is alt={{name}}
, which is desired. However, the src gets url encoded (undesired), src='products/%7b%7b%20image%20%7d%7d'
.
Is there a way to eliminate the url encoding on the src?