mirror of
https://github.com/celogeek/go-comic-converter.git
synced 2025-05-25 00:02:37 +02:00
24 lines
411 B
Go
24 lines
411 B
Go
/*
|
|
Templates use to create xml files of the EPUB.
|
|
*/
|
|
package epubtemplates
|
|
|
|
import _ "embed"
|
|
|
|
var (
|
|
//go:embed "epubtemplates_container.xml.tmpl"
|
|
Container string
|
|
|
|
//go:embed "epubtemplates_applebooks.xml.tmpl"
|
|
AppleBooks string
|
|
|
|
//go:embed "epubtemplates_style.css.tmpl"
|
|
Style string
|
|
|
|
//go:embed "epubtemplates_text.xhtml.tmpl"
|
|
Text string
|
|
|
|
//go:embed "epubtemplates_blank.xhtml.tmpl"
|
|
Blank string
|
|
)
|