mirror of
https://github.com/celogeek/go-comic-converter.git
synced 2025-05-24 15:52:38 +02:00
25 lines
457 B
Go
25 lines
457 B
Go
package epub
|
|
|
|
import _ "embed"
|
|
|
|
//go:embed "templates/container.xml.tmpl"
|
|
var containerTmpl string
|
|
|
|
//go:embed "templates/content.opf.tmpl"
|
|
var contentTmpl string
|
|
|
|
//go:embed "templates/toc.ncx.tmpl"
|
|
var tocTmpl string
|
|
|
|
//go:embed "templates/nav.xhtml.tmpl"
|
|
var navTmpl string
|
|
|
|
//go:embed "templates/style.css.tmpl"
|
|
var styleTmpl string
|
|
|
|
//go:embed "templates/part.xhtml.tmpl"
|
|
var partTmpl string
|
|
|
|
//go:embed "templates/text.xhtml.tmpl"
|
|
var textTmpl string
|