2022-12-26 19:01:34 +01:00

25 lines
495 B
Go

package epub
import _ "embed"
//go:embed "templates/mimetype.tmpl"
var TEMPLATE_MIME_TYPE string
//go:embed "templates/container.xml.tmpl"
var TEMPLATE_CONTAINER string
//go:embed "templates/content.opf.tmpl"
var TEMPLATE_CONTENT string
//go:embed "templates/toc.ncx.tmpl"
var TEMPLATE_TOC string
//go:embed "templates/nav.xhtml.tmpl"
var TEMPLATE_NAV string
//go:embed "templates/style.css.tmpl"
var TEMPLATE_STYLE string
//go:embed "templates/text.xhtml.tmpl"
var TEMPLATE_TEXT string