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 +} +