Hi, joe
In demo site, has no problem!
but maybe because it use mssql, not use sqlce.
with sqlce, Â when i input
////in Blog Begin/////
Hello!
World!
////in Blog End/////
In Sqlce's mp_RssFeedEntries table I see below:
////in mp_RssFeedEntries'Description  Begin/////
<p>
Hello!</p>
<p>
World!</p>
<br /><a href='http://www.ipw.com/test5.aspx'>Admin</a> <a href='http://www.ipw.com/test5.aspx'>...</a>
////in mp_RssFeedEntries'Description  End/////
I think it's ok, but before it show in FeedManagerModule.ascx, I see the below code
protected string FormatBody(string postBody, string postUrl)
{
........
return UIHelper.CreateExcerpt(postBody, config.ExcerptLength, "<a class='morelink' href='" + postUrl + "'" + onclick + ">" + moreLinkText + "</a>");
}
return UIHelper.CreateExcerpt(postBody, config.ExcerptLength, config.ExcerptSuffix);
}Â
in UIHelper.CreateExcerpt,  it use string result = SecurityHelper.RemoveMarkup(content);
in  RemoveMarkup
public static string RemoveMarkup(string text)
{
text = Regex.Replace(text, @" ", " ", RegexOptions.IgnoreCase);
return Regex.Replace(text.Replace(" ", " "), @"<.+?>", "", RegexOptions.Singleline); // this line code remove all format
}
you can see, the above code, remove all <p> <br />.. <a>
then after FormatBody, the Description become
"\r\n\ttest5\r\nAdmin ..."
So, it because plan text, has no format or link.
Thanks!