Converting a Word manuscript to EPUB sounds like it should be a one-click operation, and in some versions of Word, there is in fact a "Save As" option that produces something with an .epub extension. The problem is that the file it produces, while technically an EPUB, is usually a poor one: navigation that doesn't work correctly, leftover Word-specific formatting cruft buried in the underlying markup, and a structure that doesn't reflow or display the way readers expect.
This guide explains why direct Word-to-EPUB export usually produces a messy file, what a clean conversion actually requires, a realistic step-by-step approach, and how to check the result before you consider the job done.
Why "Save As EPUB" from Word usually falls short
An EPUB file, at its core, is a package of XHTML files with a defined navigation structure, as covered in detail in our guide on EPUB formatting best practices. Word wasn't built to produce that structure as its primary output, it was built to produce .docx files and printed pages, so its EPUB export is a secondary, less-refined feature with a few recurring issues:
- Poor semantic structure. Word's internal document format tracks a lot of direct formatting (this specific run of text is bold, 14pt, this color) rather than semantic meaning (this is a heading). When exported to EPUB, that direct formatting often gets carried over as inline styles rather than being translated into proper semantic tags, which is exactly the kind of visual-only formatting that causes the problems described in our EPUB best practices guide.
- Broken or incomplete table of contents. If your chapter titles weren't consistently marked with Word's Heading styles, the exported EPUB's navigation document either omits them or picks up the wrong lines as chapter breaks, producing a table of contents that doesn't match your actual book.
- Leftover Word-specific markup. Word's internal XML carries a lot of application-specific metadata and formatting classes that have no meaning outside Word. When exported, some of this cruft can end up in the EPUB's underlying XHTML and CSS, bloating the file and occasionally causing rendering quirks in specific reading apps.
- Image and layout handling. Images embedded in a Word document don't always convert cleanly to EPUB's reflowable image handling, sometimes retaining fixed pixel dimensions or absolute positioning that doesn't adapt to different screen sizes, which is one of the common EPUB errors covered in our formatting best practices guide.
None of this means Word is a bad tool for drafting, it's an excellent one. It just means treating its EPUB export as your final ebook file, without inspection or cleanup, is a common way to end up with a technically-valid-but-poorly-built EPUB.
What a clean conversion actually requires
Getting from a Word manuscript to a genuinely well-built EPUB requires a few things that a single export step doesn't provide on its own:
Heading styles that map cleanly to EPUB navigation. Your chapter titles need to be Word Heading 1 (or a consistent style you've mapped as your chapter marker) so that whatever tool handles the conversion can reliably identify them as chapter breaks and build a working table of contents from them, the same requirement covered for print formatting in our companion guide on formatting a Word document into a print-ready book.
Stripped direct-formatting cruft. Manual bold-and-resize "fake headings", inconsistent font choices scattered through the body text, and leftover tracked-changes markup should be cleaned up before conversion, since a converter can only work with the structure you give it.
Deliberate image handling. Images should be reviewed for reasonable resolution and file size, and ideally the conversion process should apply percentage-based CSS scaling rather than carrying over Word's fixed pixel placement.
Correct front and back matter placement. A title page, copyright page, and any dedication need to be positioned in reading order at the front of the EPUB, generally without cluttering the visible table of contents with every front-matter page, matching the convention described in our EPUB best practices guide.
A step-by-step approach
- Clean up your Word document's Styles first. Go through the manuscript and confirm every chapter title uses Heading 1 (or your chosen heading style) consistently, and that body paragraphs use a single, consistently applied Normal or Body Text style rather than a mix of manually formatted paragraphs. This single step has the biggest effect on conversion quality of anything on this list.
- Remove manual formatting hacks. Search through the document for extra manual line breaks used to fake paragraph spacing, manually typed indents (using the space bar or tab key instead of a paragraph-level indent setting), and any leftover comments or tracked changes that should be resolved before conversion.
- Convert using a dedicated tool rather than Word's native export. Import the cleaned-up manuscript into a tool built specifically for producing EPUB files (an EPUB-focused converter or a full formatting platform like LiberScript) rather than relying on Word's own "Save As EPUB" feature, since dedicated tools generally produce cleaner semantic markup and a more reliable navigation document from the same source content.
- Review the generated table of contents against your actual chapter list. Confirm every chapter appears, in the right order, with the right title text, before moving on.
- Check images and any special formatting. Scene breaks, block quotes, and any images should be reviewed specifically, since these are the elements most likely to need a manual touch-up after an otherwise clean conversion.
- Validate the file. Run the resulting EPUB through EPUBCheck (or whatever validation your formatting tool provides) to catch structural errors before you consider the file final.
How to sanity-check the resulting EPUB
Validation catches structural errors, but it doesn't tell you whether the file actually reads well. A few practical checks are worth doing on every converted EPUB before publishing it:
- Open it in more than one reading app. Different reading apps (Apple Books, Kobo's app, a Kindle Previewer if you're targeting Amazon, an EPUB reader like Calibre's built-in viewer) use different rendering engines, and a file that looks perfect in one can reveal an issue in another. Checking at least two gives you a reasonable sense of how it will behave in the wild.
- Check the table of contents navigation specifically. Tap or click through several entries and confirm each one jumps to the correct chapter, not just that the list of titles looks right visually.
- Check reflow at different font sizes. Increase and decrease the text size in your reading app and confirm the layout still looks correct, headings still stand out, images still scale appropriately, and nothing overlaps or overflows.
- Spot-check a chapter with any special formatting. If your book has block quotes, scene breaks, or images, open at least one instance of each in your test reading apps rather than assuming the pattern held throughout the whole manuscript.
Frequently asked questions
Can I just use Word's built-in "Save As EPUB" if my manuscript is simple?
For an extremely simple, text-only manuscript with consistently applied Heading styles already in place, Word's native export can produce something usable, but it's still worth validating the result and reviewing the table of contents navigation before publishing, since even simple manuscripts can pick up unexpected markup cruft during export.
Do I need to convert to EPUB 3, or is EPUB 2 still acceptable?
Most modern conversion tools and platforms default to EPUB 3, which is the current standard and backward-compatible with EPUB 2 readers for standard text content. Unless you have a specific reason to target EPUB 2, EPUB 3 is the right default.
My converted EPUB's table of contents is missing chapters. What happened?
This almost always traces back to one or more chapter titles in the original Word document not being marked with a proper Heading style, so the converter didn't recognize them as chapter breaks. Go back to the Word source, confirm every chapter title uses a consistent heading style, and reconvert.
Should I clean up my Word file first, or can the conversion tool fix formatting issues for me?
A good conversion tool can compensate for some inconsistency, but it works from the structure you give it. Cleaning up Styles and removing manual formatting hacks before conversion consistently produces a better result than expecting the conversion step to fix structural problems after the fact.
Is there a difference between converting a novel and converting a nonfiction book with images and tables?
The underlying conversion approach is the same, but nonfiction with images, tables, or sidebars needs more careful post-conversion review, since these elements are more likely to need adjustment after an automated conversion than straightforward chapters of prose.
The bottom line
A clean Word-to-EPUB conversion depends far more on how your Word document is structured going in than on which conversion tool you use. Consistent Heading styles, a single clean Body Text style, and manual formatting hacks removed before conversion will get you a far better result than relying on any tool, including Word's own export, to fix a messy source document after the fact. Validate the output, check it in more than one reading app, and confirm the navigation actually works before calling the file finished.
For the deeper details on what makes an EPUB well-built once it's converted, semantic markup, CSS, font embedding, and accessibility, see our guide on EPUB formatting best practices. If you're also producing a print edition from the same manuscript, see our companion guide on formatting a Word document into a print-ready book. To convert your manuscript into a clean, valid EPUB without hand-editing the underlying markup, get started in LiberScript.
Ready to make your book look the part?
Do it yourself in one workspace, or hand the specialist parts to people who do this every day.
Write it in LiberScript
Import your manuscript, get an AI-assisted critique, design the interior, and export print-ready PDF, EPUB and DOCX from one workspace.
See pricingHave the cover and interior designed
Professional cover design and manuscript typesetting, delivered as print-ready files for KDP, IngramSpark or anywhere else.
Get a quote