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:
		
				
					committed by
					
						
						David Thompson
					
				
			
			
				
	
			
			
			
						parent
						
							a7dac982c2
						
					
				
				
					commit
					286edaa5de
				
			@@ -152,7 +152,7 @@
 | 
				
			|||||||
    ,@(map (lambda (enclosure)
 | 
					    ,@(map (lambda (enclosure)
 | 
				
			||||||
             `(link (@ (rel "enclosure")
 | 
					             `(link (@ (rel "enclosure")
 | 
				
			||||||
                       (title ,(enclosure-title enclosure))
 | 
					                       (title ,(enclosure-title enclosure))
 | 
				
			||||||
                       (url ,(enclosure-url enclosure))
 | 
					                       (href ,(enclosure-url enclosure))
 | 
				
			||||||
                       (type ,(enclosure-mime-type enclosure))
 | 
					                       (type ,(enclosure-mime-type enclosure))
 | 
				
			||||||
                       ,@(map (match-lambda
 | 
					                       ,@(map (match-lambda
 | 
				
			||||||
                                ((key . value)
 | 
					                                ((key . value)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user