Skip to content
Wednesday, August 26, 2026
Mon Book ProE-Readers / Digital Publishing
Home / Tools
Tools

What Can You Actually Fix Inside an EPUB With Sigil?

Sigil opens the EPUB itself — XHTML, CSS, spine, and all — which makes it the tool for surgical fixes that no library manager or converter dialog will ever reach.

Zara Nasser, · February 25, 2026 · 4 min read
ShareXFacebookLinkedInTelegramEmail
E-reader displaying a chapter with visible markup corrections on desk beside notebook

Sigil is a free, open-source EPUB editor, and the direct answer is this: it lets you edit the actual files inside an EPUB — the XHTML chapters, the stylesheet, the images, the metadata, and the spine that orders them — with validation built in. Per the project's documentation, Sigil works on EPUB 2 and EPUB 3 and runs on Windows, macOS, and Linux. It's the right tool when you need to fix one broken thing inside an otherwise finished book, and the wrong tool for rewriting a manuscript, because you're working on code, not on a word-processor page.

What does Sigil show you when you open an EPUB?

A book in Sigil looks like a file tree plus a editing pane. The Book Browser lists every file inside the EPUB: text chapters, stylesheets, images, fonts, and the OPF package file that ties it together. Click a chapter and you can edit it in Code View, which shows the raw XHTML, or Preview, which renders it approximately as a reader app would. Per the project's documentation, theFlightCREW validator bundled with Sigil checks the book against the EPUB specification, so you know immediately whether an edit broke something structural.

The metadata editor handles title, author, language, ISBN, and series-type fields directly. If your converter wrote the author's name backwards or dropped the language tag — which breaks hyphenation on real devices — that's a two-minute fix here.

Which fixes is Sigil the natural tool for?

How should a first-time user work safely?

Treat Sigil like surgery, not rewriting. Keep an untouched copy of the original EPUB before you open it. Make one change, save, and re-run validation; per the project's documentation, saving keeps the same file structure, so a book that validated before your edit should validate after. Rename files inside Sigil rather than in a file manager — the OPF references every file by name, and renaming outside the editor breaks those references instantly.

Version-stated basics: Sigil has been maintained as an open-source project for over a decade, with regular releases on GitHub; grab the current stable build rather than an old tutorial's download link, because EPUB 3 support and the bundled validator have both improved across versions.

How do you check your work the way a device will?

Sigil's Preview is convenient but approximate, per the project's documentation, so build a two-step verification habit. First, run Sigil's bundled validator after every editing session — it flags structural errors against the EPUB specification, which is what retailers' automated checks will also flag. Second, open the saved EPUB in at least one desktop reading application and, before publishing, on the actual hardware or app your readers use most, whether that's a Kindle, a Kobo, or a phone app. Renderers disagree about hyphenation, font substitution, and image scaling, and a book that looks fine in Preview can still surprise you on e-ink.

A useful discipline for proofreaders: keep a short personal checklist of the errors you actually find — missing language tag, unstyled chapter openers, double blank lines — and run it on every book before sign-off. Most production errors repeat, and a checklist turns that repetition into speed.

What shouldn't you try to do in Sigil?

Don't restructure a whole book chapter by chapter if a converter rebuild takes ten minutes. Don't edit DRM-protected files — most tools won't open them, and circumvention is legally fraught, so this workflow applies only to files you have the right to modify, such as your own manuscripts or DRM-free purchases where the seller permits it. And don't trust Preview as final proof: render the finished EPUB on an actual e-reader or reading app before publishing, because font handling, hyphenation, and image scaling differ between renderers.

How does Sigil fit an author's or proofreader's workflow?

A practical loop: produce the EPUB with your converter of choice, open it in Sigil, fix structural and styling issues, validate, then proof on-device. Repeat only if the source changes. The division of labor is clean — converters translate the manuscript, Sigil polishes the result, and validation plus a device render is what tells you the book is genuinely done.

Frequently Asked Questions

Is Sigil free and does it work on all platforms?
Yes. Sigil is free and open source, and per the project's documentation it runs on Windows, macOS, and Linux, editing both EPUB 2 and EPUB 3 files with a bundled validator.
Can Sigil fix a broken table of contents in an EPUB?
Yes. Sigil exposes the NCX and NAV files that define the TOC, so you can edit or regenerate entries directly, then validate that the book still meets the EPUB specification.
Can I use Sigil on any EPUB I own?
Only files you have the right to modify — your own manuscripts or DRM-free files where terms permit. DRM-protected purchases generally cannot be opened, and circumvention raises legal issues this article does not cover.