Understand the Standard Ebooks source directory structure
masterMany tools in this repository operate on Standard Ebooks source directories. These directories follow a consistent minimal structure:
./images/: Contains source images for the cover, titlepages, and illustrations. Source images should be at maximum resolution; resized/compressed/SVG versions are placed in./src/epub/images/for distribution../src/epub/: Contains the files that constitute the final distributable EPUB.css/: Containscore.css,local.css, andse.css.images/: Contains distribution-ready assets likecover.svg,logo.svg, andtitlepage.svg.text/: Contains XHTML files such ascolophon.xhtml,imprint.xhtml,titlepage.xhtml, anduncopyright.xhtml.content.opf: The package document.toc.xhtml: The table of contents.META-INF/container.xml: EPUB container information.mimetype: The EPUB mimetype file.
LICENSE.md: The project license.
.
|__ images/
| |__ cover.jpg
| |__ cover.source.jpg
| |__ cover.svg
| |__ titlepage.svg
|
|__ src/
| |__ META-INF/
| | |__ container.xml
| |
| |__ epub/
| | |__ css/
| | | |__ core.css
| | | |__ local.css
| | | |__ se.css
| | |
| | |__ images/
| | | |__ cover.svg
| | | |__ logo.svg
| | | |__ titlepage.svg
| | |
| | |__ text/
| | | |__ colophon.xhtml
| | | |__ imprint.xhtml
| | | |__ titlepage.xhtml
| | | |__ uncopyright.xhtml
| | |
| | |__ content.opf
| | |__ toc.xhtml
| |
| |__ mimetype
|
|__ LICENSE.md