A tiny programme to create EPub files from lightnovelstranslations.com.
This is a Dlang rewrite of a tool I originally wrote in Node/JS named embellish.
embellished book.jsonwhere book.json is a json file of the following format:
{
"title": "Book Title",
"url": "Link to the first chapter",
"filename": "File name to save the file to",
"author": "Author's name (optional)",
"cover": "Url for cover image (optional)",
"stylesheet": "Path to a local stylesheet (*.css) to include (optional)"
}The app will extract each chapter until it reach a chapter with name Epilogue, or a page without next page links.
dub build