Quote:
Originally Posted by iodine9176
Are there any ways to save doc as xhtml ?
|
You can save it as (filtered) HTML, which should be good enough for ePub. If for some reason you need it as XHTML, just open the HTML and change the doctype at the top:
e.g., from
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
to
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
and rename the file to end in .xhtml.
There's nothing in HTML that can't be used in XHTML.