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:
parent
a7dac982c2
commit
286edaa5de
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue