Skip to content

Commit c217346

Browse files
committed
Fix incorrect link[rel=alternate] tag in Atom feeds
1 parent dbb75b1 commit c217346

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

blog/build/render/feed.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
(match-define (rendered-post title-str _ date tags body) post)
2929
`(entry
3030
(title ,title-str)
31-
(link ([rel "alternate"]) ,(full-url (rendered-post-path post)))
31+
(link ([rel "alternate"] [href ,(full-url (rendered-post-path post))]))
3232
(published ,(post-date->rfc-3339-datetime date))
3333
(updated ,(post-date->rfc-3339-datetime date))
3434
(author (name "Alexis King"))

0 commit comments

Comments
 (0)