mirror of
https://github.com/celogeek/go-comic-converter.git
synced 2025-05-25 00:02:37 +02:00
21 lines
356 B
Go
21 lines
356 B
Go
package epub
|
|
|
|
import "encoding/xml"
|
|
|
|
type TocTitle struct {
|
|
XMLName xml.Name `xml:"a"`
|
|
Value string `xml:",innerxml"`
|
|
Link string `xml:"href,attr"`
|
|
}
|
|
|
|
type TocChildren struct {
|
|
XMLName xml.Name `xml:"ol"`
|
|
Tags []*TocPart
|
|
}
|
|
|
|
type TocPart struct {
|
|
XMLName xml.Name `xml:"li"`
|
|
Title TocTitle
|
|
Children *TocChildren `xml:",omitempty"`
|
|
}
|