How do you prevent material icon text from showing up when Google's JS fails to convert them to icons?
Icons are defined in markup as such:
<span class="material-icons">icon_name</span>
Example: https://archive.fo/CKqKG/scr.png (see the top row of buttons).
Material Icons Documentation: https://material.io/icons/
This is also an issue in Google search where Google will actually read and save the div's text instead of ignoring it.
Example: https://i.sstatic.net/dKH1e.png
I understand that one solution is to simply switch to .PNGs (supplied by Google). I'd like to do whatever results in less (network) load on the user's system.
Thanks!