diff options
author | Alan Pearce | 2024-06-23 10:15:03 +0200 |
---|---|---|
committer | Alan Pearce | 2024-06-23 10:17:16 +0200 |
commit | 3a7e71544045647fa3ac702a1f0c5ad14623cb98 (patch) | |
tree | dfa57fd715f09f728d27346e621fa4a945c595a2 /internal | |
parent | a049c9cc6b11018e7fc497876ad0402965d87397 (diff) | |
download | website-3a7e71544045647fa3ac702a1f0c5ad14623cb98.tar.lz website-3a7e71544045647fa3ac702a1f0c5ad14623cb98.tar.zst website-3a7e71544045647fa3ac702a1f0c5ad14623cb98.zip |
fix feed content
Diffstat (limited to 'internal')
-rw-r--r-- | internal/atom/atom.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/atom/atom.go b/internal/atom/atom.go index 37c53d9..a5965a4 100644 --- a/internal/atom/atom.go +++ b/internal/atom/atom.go @@ -27,7 +27,7 @@ func MakeLink(url string) Link { } type FeedContent struct { - Content string `xml:",innerxml"` + Content string `xml:",chardata"` Type string `xml:"type,attr"` } |