Tools, FAQ, Tutorials:
Minimum Requirement of EPUB 3.0 File
What Is the minimum requirement of an EPUB 3.0 file?
✍: FYIcenter.com
If you want to build an EPUB file that meets the minimum requirements of EPUB 3.0 specification, you need to prepare the following:
1. A text file called "mimetype" with one line listed below. It specifies the mimetype of an EPUB 3.0 book file.
application/epub+zip
2. An XML file called "container.xml" in a sub folder named as "META-INF". The "container" file uses the XML format to specify a package file of any name, for example: package.opf.
3. A package file named like package.opf, in XML format to define required meta data and specify 2 required XHTML files: one provides navigation information of the book, and the other provides the content of the book.
4. A navigation file named like navigation.xhtml that uses the XHTML language. It provides navigation information like a table of contents of the book.
5. A content file named like content.xhtml that uses the XHTML language. It provides the content of the book.
6. Package all above 5 files into a ZIP file named like Hello-3.0.epub.
The resulting ZIP file, Hello-3.0.epub, is an EPUB 3.0 file that meets the minimum requirements of EPUB 3.0 specifications.
⇒ Hello-3.0.epub - "mimtype" File
⇐ What Is EPUB 3.0 Specification
2018-11-17, 2164🔥, 0💬
Popular Posts:
Where to find tutorials on Python programming language? I want to learn Python. Here is a large coll...
How to use "json-to-xml" Azure API Policy Statement? The "json-to-xml" Policy Statement allows you t...
What Is Azure API Management Service? Azure API Management as a turnkey solution for publishing APIs...
How to access Request body from "context.Request.Body" object in Azure API Policy? Request body is t...
Where to get a JSON.stringify() Example Code in JavaScript? Here is a good JSON.stringify() example ...