I have my Comment Feed template, AND I managed to get the feed to show the body of the comment as the headline (I'll be repurposing these comments as a feed "promo" on my site) but no matter WHAT code I delete, my individual comment feeds always start with <p> and end with <br /></p> as shown here:
http://blogs.courant.com/rant/comments.xml
I'm thinking it HAS to do with the <title> tag, but without that, the comment won't show up as the headline (or show up at all).
Here's my code:
CODE
<?xml version="1.0" encoding="<$MTPublishCharset$>"?>
<rss version="2.0">
<channel>
<title><$MTBlogName remove_html="1" encode_html="1"$>: Comments</title>
<link><$MTBlogURL$></link>
<description>Latest comments for <$MTBlogName remove_html="1" encode_html="1"$></description>
<language>en-us</language>
<lastBuildDate><MTComments lastn="1"><$MTCommentDate language="en" format="%a, %d %b %Y %H:%M:%S"$> <$MTBlogTimezone no_colon="1"$></MTComments></lastBuildDate>
<generator>http://www.movabletype.org/?v=<$MTVersion$></generator>
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
<MTComments lastn="20" sort_order="descend">
<item>
<title>"<description><$MTCommentBody encode_html="1"$> <$MTCommentAuthorLink show_email="0" encode_html="1"$></description>"</title>
<guid isPermaLink="false">comment<$MTCommentID pad="1"$>@<$MTBlogURL$></guid>
<pubDate><$MTCommentDate language="en" format="%a, %d %b %Y %H:%M:%S"$> <$MTBlogTimezone no_colon="1"$></pubDate>
</item>
</MTComments>
</channel>
</rss>
<rss version="2.0">
<channel>
<title><$MTBlogName remove_html="1" encode_html="1"$>: Comments</title>
<link><$MTBlogURL$></link>
<description>Latest comments for <$MTBlogName remove_html="1" encode_html="1"$></description>
<language>en-us</language>
<lastBuildDate><MTComments lastn="1"><$MTCommentDate language="en" format="%a, %d %b %Y %H:%M:%S"$> <$MTBlogTimezone no_colon="1"$></MTComments></lastBuildDate>
<generator>http://www.movabletype.org/?v=<$MTVersion$></generator>
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
<MTComments lastn="20" sort_order="descend">
<item>
<title>"<description><$MTCommentBody encode_html="1"$> <$MTCommentAuthorLink show_email="0" encode_html="1"$></description>"</title>
<guid isPermaLink="false">comment<$MTCommentID pad="1"$>@<$MTBlogURL$></guid>
<pubDate><$MTCommentDate language="en" format="%a, %d %b %Y %H:%M:%S"$> <$MTBlogTimezone no_colon="1"$></pubDate>
</item>
</MTComments>
</channel>
</rss>
Any ideas?
