Cleanup
This commit is contained in:
parent
6215ecb82a
commit
7de921b1b5
8
entry.go
8
entry.go
@ -39,6 +39,10 @@ func (e *Entry) checkAuthors() error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (e *Entry) AddExtension(name string, value any) {
|
||||||
|
e.Extensions = append(e.Extensions, &ExtensionElement{XMLName: xml.Name{Local: name}, Value: value})
|
||||||
|
}
|
||||||
|
|
||||||
func (e *Entry) Check() error {
|
func (e *Entry) Check() error {
|
||||||
if e.ID == nil {
|
if e.ID == nil {
|
||||||
return errors.New("no id element of entry")
|
return errors.New("no id element of entry")
|
||||||
@ -132,7 +136,3 @@ func (e *Entry) Check() error {
|
|||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e *Entry) AddExtension(name string, value any) {
|
|
||||||
e.Extensions = append(e.Extensions, &ExtensionElement{XMLName: xml.Name{Local: name}, Value: value})
|
|
||||||
}
|
|
||||||
|
8
feed.go
8
feed.go
@ -25,6 +25,10 @@ type Feed struct {
|
|||||||
Entries []*Entry `xml:"entry,omitempty"`
|
Entries []*Entry `xml:"entry,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (f *Feed) AddExtension(name string, value any) {
|
||||||
|
f.Extensions = append(f.Extensions, &ExtensionElement{XMLName: xml.Name{Local: name}, Value: value})
|
||||||
|
}
|
||||||
|
|
||||||
func (f *Feed) Check() error {
|
func (f *Feed) Check() error {
|
||||||
if f.ID == nil {
|
if f.ID == nil {
|
||||||
return errors.New("no id element of feed")
|
return errors.New("no id element of feed")
|
||||||
@ -156,10 +160,6 @@ func (f *Feed) Standardize() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *Feed) AddExtension(name string, value any) {
|
|
||||||
f.Extensions = append(f.Extensions, &ExtensionElement{XMLName: xml.Name{Local: name}, Value: value})
|
|
||||||
}
|
|
||||||
|
|
||||||
func (f *Feed) ToXML(encoding string) (string, error) {
|
func (f *Feed) ToXML(encoding string) (string, error) {
|
||||||
xml, err := xml.MarshalIndent(f, "", " ")
|
xml, err := xml.MarshalIndent(f, "", " ")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user