feat(ipub,ast): Content Element definition

This commit is contained in:
Guz
2025-05-16 15:14:02 -03:00
parent 50b387ccf2
commit fbe01ad098

17
ipub/ast/content.go Normal file
View 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
}