From 286edaa5de4ef6a21f2f2839959fa7ff9a02ed64 Mon Sep 17 00:00:00 2001 From: Christopher Lemmer Webber Date: Sun, 25 Nov 2018 18:40:37 -0500 Subject: atom: links should use href attribute, not url attribute. * haunt/builder/atom.scm (post->atom-entry): Switch url attribute to href attribute. --- haunt/builder/atom.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haunt/builder/atom.scm b/haunt/builder/atom.scm index 5ffb6d0..b38afd4 100644 --- a/haunt/builder/atom.scm +++ b/haunt/builder/atom.scm @@ -152,7 +152,7 @@ ,@(map (lambda (enclosure) `(link (@ (rel "enclosure") (title ,(enclosure-title enclosure)) - (url ,(enclosure-url enclosure)) + (href ,(enclosure-url enclosure)) (type ,(enclosure-mime-type enclosure)) ,@(map (match-lambda ((key . value) -- cgit v1.2.3