I have a situation where a typo in a .png file's name was corrected in the reference of a .md file, but the name of the .png file itself was not corrected.
folder
├ my_tipo.png
└ my_docu.md
With the content of my_docu.md:
now typos correctly fixes the typo in my_docu.md but does not fix the file name of my_tipo.png which breaks the link.
Are PNGs not checked in general? Is it possible to have them checked?
I tried adding this to my _typos.toml but it did nothing:
[type.images]
extend-glob = ["*.png"]
check-file = false