Hi,
Your original html is simply not correct. You specified a title= and alt= in the img tag but never provided either the title text or the alt text. The code that parses that bad html gets confused and ends up thinking that "alt=" is the title you did not specify.
Solution: fix your html before loading it into Sigil.
title="" alt=""
is one way to fix this or better yet, remove the title= completely and put some valid alt="a text description of the image here".
The latter is important for reading software for the blind and others who can not actually see the image.
|