atom: links should use href attribute, not url attribute.

* haunt/builder/atom.scm (post->atom-entry): Switch url attribute to
  href attribute.
This commit is contained in:
Christopher Lemmer Webber 2018-11-25 18:40:37 -05:00 committed by David Thompson
parent a7dac982c2
commit 286edaa5de
1 changed files with 1 additions and 1 deletions

View File

@ -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)