go-comic-converter/internal/epub/epub_templates.go
2023-04-22 10:57:50 +02:00

22 lines
503 B
Go

package epub
import _ "embed"
//go:embed "templates/epub_templates_container.xml.tmpl"
var containerTmpl string
//go:embed "templates/epub_templates_applebooks.xml.tmpl"
var appleBooksTmpl string
//go:embed "templates/epub_templates_style.css.tmpl"
var styleTmpl string
//go:embed "templates/epub_templates_title.xhtml.tmpl"
var titleTmpl string
//go:embed "templates/epub_templates_text.xhtml.tmpl"
var textTmpl string
//go:embed "templates/epub_templates_blank.xhtml.tmpl"
var blankTmpl string