We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there any way I can completely remove the Table of Contents page altogether?
I want it to show the first page of book directly.
Thank you!
The text was updated successfully, but these errors were encountered:
this is really important to fix
Sorry, something went wrong.
the way I did it was to add my own toc.html file then got straight into the book pages
toc.html
cover: "cover.jpeg", customHtmlTocTemplatePath: "toc.html",
then each page is option.content.push({ data: '<p>page of book</p>'});
option.content.push({ data: '<p>page of book</p>'});
toc.html __________________ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:epub="http://www.idpf.org/2007/ops" lang="en"> <head> <meta charset="UTF-8" /> <title></title> <link rel="stylesheet" type="text/css" href="style.css" /> </head> <body style=" margin: 0; padding: 0;"> <div style="height: 100%; width: 100%; background-image: url('cover.jpeg'); background-size: 100% 100%;" /> </body> </html>
fix(image): handle relative url, catch axios 404 error (cyrilis#97)
ef05c01
Co-authored-by: Volodymyr Burdeinyi <“[email protected]”>
No branches or pull requests
Is there any way I can completely remove the Table of Contents page altogether?
I want it to show the first page of book directly.
Thank you!
The text was updated successfully, but these errors were encountered: