2022-12-27 20:10:41 +01:00

28 lines
560 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/part.xhtml.tmpl"
var TEMPLATE_PART string
//go:embed "templates/text.xhtml.tmpl"
var TEMPLATE_TEXT string