Quote:
Originally Posted by Notjohn
I am revising a book published a few years ago when I still trusted Word's export to html, but when I open it in Sigil, I get an error at the first named entity, which was an – and when I fixed that, it choked at the very next one, with many more waiting down the line.
|
I had the same problem and solved it by inserting the doctype in the
Xhtml files:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
i.e Search : <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
Replace : <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
After that Sigil doesn't complain any more !