diff options
author | Christopher Lemmer Webber <cwebber@dustycloud.org> | 2018-11-25 18:40:37 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2018-11-29 11:29:59 -0500 |
commit | 286edaa5de4ef6a21f2f2839959fa7ff9a02ed64 (patch) | |
tree | 2ccd9cc43fd12cceb8eee1fdb2e06ec2058aee8b | |
parent | a7dac982c2004e0bc3d99ad312ba650a53374899 (diff) |
atom: links should use href attribute, not url attribute.
* haunt/builder/atom.scm (post->atom-entry): Switch url attribute to
href attribute.
-rw-r--r-- | haunt/builder/atom.scm | 2 |
1 files changed, 1 insertions, 1 deletions
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) |