How to stop broken images showing
Very simple answer is add alt attribute with empty value
<img src="" alt="" width="50" height="50"/>
width & height are optional
Add this inline event handler,
<img src="broken.png" onerror="this.style.display='none'" />