celogeek 21b099ab33
improve spread, and blank for double page rendering
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).
2023-01-16 00:20:41 +01:00

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