diff options
-rw-r--r-- | TODO.org | 2 | ||||
-rw-r--r-- | haunt/builder/atom.scm | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -14,7 +14,7 @@ <mirai> why not simply output XHTML5? :-) [10:41] <mirai> you get to use modern HTML and its valid XML <dthompson> I guess because I didn't know about it :) [10:43] -** bug: Atom feed "summary" should be "content" +** DONE bug: Atom feed "summary" should be "content" haunt/builder/atom.scm line 157 https://validator.w3.org/feed/docs/atom.html#recommendedEntryElements ** Allow for cache-busting assets diff --git a/haunt/builder/atom.scm b/haunt/builder/atom.scm index acd74d4..7f85065 100644 --- a/haunt/builder/atom.scm +++ b/haunt/builder/atom.scm @@ -154,7 +154,7 @@ (if email `(email ,email) '()))) (updated ,(date->string* (post-date post))) (link (@ (href ,uri) (rel "alternate"))) - (summary (@ (type "html")) + (content (@ (type "html")) ,(sxml->html-string (post-sxml post))) ,@(map (lambda (enclosure) `(link (@ (rel "enclosure") |