I have base64 encoded image. If I put it right into html it works:
<img src="data:image/png;base64,..."/>
But when I put all that base64 content into a separated file, it doesn't:
<img src="image.base64.txt"/>
I tried changing extension to .png, but it doesn't help. Any ideas?