mirror of
https://github.com/celogeek/go-comic-converter.git
synced 2025-05-25 00:02:37 +02:00
handle landscape mode better handling double page with epub 3.3 center spread support improve support for apple book
22 lines
411 B
Go
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
|