summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--website/www.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/website/www.scm b/website/www.scm
index 244830b..01e6a93 100644
--- a/website/www.scm
+++ b/website/www.scm
@@ -57,7 +57,7 @@
(lambda (port)
(xml->sxml port
#:namespaces '((atom . "http://www.w3.org/2005/Atom")
- (x . "http://www.w3.org/1999/xhtml"))
+ (xhtml . "http://www.w3.org/1999/xhtml"))
#:trim-whitespace? #t))))))
(define-record-type <news-entry>
@@ -83,7 +83,7 @@
(atom:link (@ (href ,link)))
(atom:title ,title)
(atom:updated ,updated)
- (atom:author ,author)
+ (atom:author (atom:name ,author))
(atom:content ,content)
,rest ...)
...