Tools, FAQ, Tutorials:
Hello-3.1.epub - "container.xml" File
How to create the "container.xml" file of an EPUB 3.1 book?
✍: FYIcenter.com
The "container.xml" file of an EPUB 3.1 book is a required file
in the book ZIP container.
It specifies a package file of any name, for example: package.opf.
Here is the requirement on the "container.xml" file:
1. The "container.xml" file must be named as "container.xml".
2. The "container.xml" file must be an XML file and meet the EPUB Open Container Format (OCF) 3.1 specifications.
3. The "container.xml" file must specify at least 1 package file, any name, for example: package.opf.
4. The "container.xml" file must be placed in a sub-directory called META-INF of the EPUB 3.1 book ZIP container.
You can create the "container.xml" file with any text editor. Here is an example:
<?xml version="1.0" encoding="utf-8"?> <container xmlns="urn:oasis:names:tc:opendocument:xmlns:container" version="1.0"> <rootfiles> <rootfile full-path="package.opf" media-type="application/oebps-package+xml"/> </rootfiles> </container>
Download Hello-3.1.epub, and unzip it. You see an example of "container.xml" in the META-INF directory.
⇒ Hello-3.1.epub - Package File: package.opf
⇐ Hello-3.1.epub - "mimtype" File
2022-05-31, 2097👍, 0💬
Popular Posts:
How to send an FTP request with the urllib.request.urlopen() function? If an FTP server supports ano...
How To Add Column Headers to a Table? If you want to add column headers to a table, you need to use ...
Where to get a JSON.stringify() Example Code in JavaScript? Here is a good JSON.stringify() example ...
How To Submit Values without Using a Form in PHP? If you know the values you want to submit, you can...
How to use the "set-body" Policy Statement for an Azure API service operation? The "set-body" Policy...