feat(ipub,ast): Content Element definition
This commit is contained in:
17
ipub/ast/content.go
Normal file
17
ipub/ast/content.go
Normal file
@@ -0,0 +1,17 @@
|
||||
package ast
|
||||
|
||||
import (
|
||||
"encoding/xml"
|
||||
"io"
|
||||
)
|
||||
|
||||
type Content struct {
|
||||
BaseElement
|
||||
}
|
||||
|
||||
var KindContent = NewElementKind("content", &Content{})
|
||||
|
||||
func (n *Content) Kind() ElementKind {
|
||||
return KindContent
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user