I have an HTML file like this:
<html>
<body>
<p>Some text...</p>
<img src="data:image/png;base64
<!-- Some really ugly base64 -->
">
<p>Some text...</p>
</body>
</html>
By default, a base64-encoded file really clutters an HTML document.
I am wondering, if there is a method to have an image that links to another place at the HTML file, rather than pasting the base64 directly between the important content, to improve readability in the raw file. I know, this is possible with some kind of JavaScript solution, but I would prefer not to use it.