mirror of
https://github.com/celogeek/go-comic-converter.git
synced 2025-05-24 07:42:37 +02:00
28 lines
560 B
Go
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
|