Code Monkey home page Code Monkey logo

Comments (1)

Firsh avatar Firsh commented on July 20, 2024

You can create such a page manually, but you need to "register" it. So when you convert with Calibre to AZW3 it gets recognized therefore the Kindle doesn't show it twice.

{
  title: 'Cover',
  data: `<section epub:type="cover">` +
    `<div class="cover-image"><img alt="Cover" id="coverimage" src="${cover}"/></div>` +
    `</section>`,
  beforeToc: true,
  excludeFromToc: true,
  filename: 'cover.xhtml'
}

If you include it in the toc, you'll end up with a broken link in the AZW3. If you exclude it from the toc, epub-gen also excludes it from the ncx, making the page disappear. Therefore check the attached template (I modified it from the source) which fixes it.

Near the end where the toc is registered in guide, the cover needs to be there as well:

    <guide>
        <reference type="text" title="Table of Content" href="toc.xhtml"/>
        <reference href="cover.xhtml" title="Cover" type="cover"/>
    </guide>

Also, where the spine toc ncx begins notice I played with the conditions to reinclude the Cover-titled page:

    <spine toc="ncx">
        <% content.forEach(function(content, index){ %>
            <% if(content.beforeToc && (!content.excludeFromToc || content.title == 'Cover')){ %>
                <itemref idref="content_<%= index %>_<%= content.id %>"/>
            <% } %>
        <% }) %>
        <itemref idref="toc" />

Download modified template: content.opf.zip

Load it via the top-level option:

        customOpfTemplatePath: path.join(__dirname, 'content.opf.ejs'),

from epub-gen.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.