I don't think that is the same issue. This looks more as if you are live binding to an image src. We don't have a fix for that yet. The workaround at the moment is this for EJS:
- <img <%= this.attr('image') ? "src='" + this.image + "'" : "" %> alt="An image" />
And this for Mustache:
- <img {{#image}}src="{{.}}"{{/image}} alt="An image" />
See issue 157