I'm using pystache to render the templates. I'm getting &
in the output when I render context variables having &. How can get rid of &
where I need & .
Same thing is happening with django templating as well
>>> pystache.render('The URL {{URL}}', {'URL': 'http://google.com?a=3&b=3'})
u'The URL http://google.com?a=3&b=3'