gen-epub-book.rs
- Generate an ePub book from a simple plaintext descriptor
gen-epub-book
IN_FILE OUT_FILE OPTIONS
Generate an ePub book from a simple plaintext descriptor.
Exit values and possible errors:
1 - I/O error
2 - parsing error
3 - file not found
4 - file in wrong state
5 - incorrect amount of elements
6 - required element missing
-v --verbose
Print out more data.
Default: false.
IN_FILE
File to parse, must exist, must comply with the DESCRIPTOR FORMAT.
Special case: '-' to read from stdin.
OUT_FILE
File to write the book to, parent directory needn't exist.
Special case: '-' to write to stdout.
-S --separator SEPARATOR
Enable custom separator feature and set the separator.
Default: ":".
-I --include [NAME=]PATH
Add an additional directory in which to search for files. Order-dependent.
NAME is an optional name under which the files will be segregated.
PATH is an existing directory.
-D --free-date
Parse more datetime formats.
See FREE DATE FORMAT FEATURE for details.
The descriptor consists of multiple lines in the format "Key: Value", unknown keys are ignored, lines that don't match the format are ignored.
Name
Required: yes
Type: plaintext
Value: e-book's title
Amount: 1
Content
Required: no
Type: file path
Value: relative path to (X)HTML chunk
Amount: any
Remarks: see ADDITIONAL CONTENT PROCESSING
String-Content
Required: no
Type: (X)HTML
Value: (X)HTML string
Amount: any
Image-Content
Required: no
Type: file path
Value: relative path to image to include in e-book
Amount: any
Network-Image-Content
Required: no
Type: file URL
Value: URL of image to include in e-book
Amount: any
Cover
Required: no
Type: file path
Value: relative path to image to use as e-book cover
Amount: 0-1
Remarks: exclusive with Network-Cover
Network-Cover
Required: no
Type: file URL
Value: URL to image to use as e-book cover
Amount: 0-1
Remarks: exclusive with Cover
Include
Required: no
Type: file path
Value: auxilliary file to include in e-book
Amount: any
Network-Include
Required: no
Type: file URL
Value: URL of auxilliary file to include in e-book
Amount: any
Description
Required: no
Type: file URL
Value: relative path to book description
Amount: 0-1
Remarks: exclusive with String-Description and Network-Description
String-Description
Required: no
Type: (X)HTML
Value: book description
Amount: 0-1
Remarks: exclusive with Description and Network-Description
Network-Description
Required: no
Type: file URL
Value: URL of book description
Amount: 0-1
Remarks: exclusive with Description and String-Description
Author
Required: yes
Type: plaintext string
Value: e-book's author
Amount: 1
Date
Required: yes
Type: RFC3339-compliant date
Value: e-book's authoring/publishing date
Amount: 1
Remarks: see FREE DATE FORMAT FEATURE
Language
Required: yes
Type: BCP47-compliant language code
Value: language used in e-book
Amount: 1
When adding content using the Content
entry, the file will additinally be
searched for a comment specifying the its name in the TOC in this format:
<!-- ePub title: "TOC_NAME" -->
Where TOC_NAME
is a string not containing the " character.
This will, on e-book readers, allow users to jump directly to the content represented by the document containing this entry.
Optional.
With the -D/--free-date flag, you can enable the free date format feature: <https://nabijaczleweli.xyz/content/gen-epub-book/programmer.html#features-free-date-format>.
The supported formats therewith are therefore:
Written by nabijaczleweli <nabijaczleweli@gmail.com> and nicohman <nicohman@demenses.net>
<https://github.com/nabijaczleweli/gen-epub-book.rs/issues>
<https://github.com/nabijaczleweli/gen-epub-book.rs>
<https://nabijaczleweli.xyz/content/gen-epub-book>