Epub Editor
Drag epub file to this Drop Zone ...
// example: remove "chapter" from title of each chapter // dom is the dom for each chapter // return true if chapter modified, false if not changed let title = dom.querySelector("h1"); let changed = (title != null); if (changed) { title.textContent = title.textContent.replace("Chapter", ""); } return changed;
Run script above to modify Epub
Check for Invalid XHTML
Check for Zero Size Images
Remove Zero Size images
Remove All Images (except cover)
List Images in view order
Watermark
<a href="www.novelparadise.com">This EPUB was downloaded from www.novelparadise.com</a>
Apply Watermark
Extract Images
Delete elements matching CSS
Clean ChrysanthemumGarden
Sanitize XHTML
Convert royalroad Table to Div (better tolino readability)