mirror of
https://github.com/celogeek/go-comic-converter.git
synced 2025-05-25 00:02:37 +02:00
22 lines
435 B
Go
22 lines
435 B
Go
// Package epubtemplates Templates use to create xml files of the EPUB.
|
|
package epubtemplates
|
|
|
|
import _ "embed"
|
|
|
|
var (
|
|
//go:embed "epub_templates_container.xml.tmpl"
|
|
Container string
|
|
|
|
//go:embed "epub_templates_applebooks.xml.tmpl"
|
|
AppleBooks string
|
|
|
|
//go:embed "epub_templates_style.css.tmpl"
|
|
Style string
|
|
|
|
//go:embed "epub_templates_text.xhtml.tmpl"
|
|
Text string
|
|
|
|
//go:embed "epub_templates_blank.xhtml.tmpl"
|
|
Blank string
|
|
)
|