celogeek a7a29d6326
rebuild toc and content
handle landscape mode
better handling double page with epub 3.3 center spread support
improve support for apple book
2023-04-16 11:47:57 +02:00

22 lines
411 B
Go

package epub
import _ "embed"
//go:embed "templates/container.xml.tmpl"
var containerTmpl string
//go:embed "templates/applebooks.xml.tmpl"
var appleBooksTmpl 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