mirror of
https://github.com/celogeek/go-comic-converter.git
synced 2025-05-25 08:12:36 +02:00
When autosplitdoublepage is activated, We will display a blank page after the full image, if necessary, for good rendering on a reader that support, double page rendering (like Apple Book).
28 lines
519 B
Go
28 lines
519 B
Go
package epub
|
|
|
|
import _ "embed"
|
|
|
|
//go:embed "templates/container.xml.tmpl"
|
|
var containerTmpl string
|
|
|
|
//go:embed "templates/content.opf.tmpl"
|
|
var contentTmpl string
|
|
|
|
//go:embed "templates/toc.ncx.tmpl"
|
|
var tocTmpl string
|
|
|
|
//go:embed "templates/nav.xhtml.tmpl"
|
|
var navTmpl string
|
|
|
|
//go:embed "templates/style.css.tmpl"
|
|
var styleTmpl string
|
|
|
|
//go:embed "templates/part.xhtml.tmpl"
|
|
var partTmpl string
|
|
|
|
//go:embed "templates/text.xhtml.tmpl"
|
|
var textTmpl string
|
|
|
|
//go:embed "templates/blank.xhtml.tmpl"
|
|
var blankTmpl string
|