New issue 66 by HSedel...@gmail.com: <img> src being ignored.
http://code.google.com/p/json-template/issues/detail?id=66
Hey fellows, great work but I have a problem!
-What steps will reproduce the problem?
1. I want to insert a variable into an <img> tag in the "src"
But It's completely ignoring the "src"-part.
If I have the exact same variable in any other part of the IMG-tag it works.
For example id="{User.Picture}", but src="{User.Picture}"
outputs 'src="%7BUser.Picture%7D"'.
Why is src being ignored like this? Can't find any information about this
elsewhere, so please help.
Thanks in advance!
/Henrik Sedelius
Sorry for the very late response -- I can't really see what may have gone
wrong. You might need to escape it properly though:
<img src="{User.Picture|htmltag}" />
I'd need an example to look into it any further (e.g. attach something that
can be run)