Move isXMLMediaType to atom.go
This commit is contained in:
parent
b08b62e794
commit
e3b9ff0225
6
atom.go
6
atom.go
@ -1,8 +1,14 @@
|
|||||||
package atomfeed
|
package atomfeed
|
||||||
|
|
||||||
|
import "strings"
|
||||||
|
|
||||||
type (
|
type (
|
||||||
EmailAddress string
|
EmailAddress string
|
||||||
LanguageTag string
|
LanguageTag string
|
||||||
MediaType string
|
MediaType string
|
||||||
URI string
|
URI string
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func isXMLMediaType(mediaType string) bool {
|
||||||
|
return strings.HasSuffix(mediaType, "/xml") || strings.HasSuffix(mediaType, "+xml")
|
||||||
|
}
|
||||||
|
4
entry.go
4
entry.go
@ -59,10 +59,6 @@ func alternateRelExists(l []*Link) bool {
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
func isXMLMediaType(mediaType string) bool {
|
|
||||||
return strings.HasSuffix(mediaType, "/xml") || strings.HasSuffix(mediaType, "+xml")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (e *Entry) AddExtension(name string, value any) {
|
func (e *Entry) AddExtension(name string, value any) {
|
||||||
e.Extensions = append(e.Extensions, &ExtensionElement{XMLName: xml.Name{Local: name}, Value: value})
|
e.Extensions = append(e.Extensions, &ExtensionElement{XMLName: xml.Name{Local: name}, Value: value})
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user