From fbe01ad098589284d6ba9c39c8b7e7052a99c6ea Mon Sep 17 00:00:00 2001 From: "Gustavo \"Guz\" L de Mello" Date: Fri, 16 May 2025 15:14:02 -0300 Subject: [PATCH] feat(ipub,ast): Content Element definition --- ipub/ast/content.go | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 ipub/ast/content.go diff --git a/ipub/ast/content.go b/ipub/ast/content.go new file mode 100644 index 0000000..4013265 --- /dev/null +++ b/ipub/ast/content.go @@ -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 +} +