Hey- that works great! Exactly what I was hoping to find.<br>Thanks so much Roman-<br><br>Paul Giacherio<br><br><br><div><span class="gmail_quote">On 6/26/07, <b class="gmail_sendername">Roman</b> <<a href="mailto:romat2@gmail.com">
romat2@gmail.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">On 6/26/07, Paul Giacherio <<a href="mailto:paulgiacherio@gmail.com">
paulgiacherio@gmail.com</a>> wrote:<br>> Can anyone point me in the right direction on how to include the full text<br>> of a page, with markup digested, in an RSS feed? I'm looking to mimic blog<br>> functionality, where an entire post can be sent in the RSS feed.
<br>> I see the undigested excerpt example on the Web Feeds page [<br>> <a href="http://www.pmwiki.org/wiki/PmWiki/WebFeeds">http://www.pmwiki.org/wiki/PmWiki/WebFeeds</a> ], and was<br>> wondering if a "digested excerpt" were possible.
<br><br>Following quick copy from my config should give you the direction:<br><br>$FeedFmt['rss']['item']['description'] = 'FeedText';<br><br>function FeedText($pagename, &$page, $tag) {
<br> $p = ReadPage($pagename);<br> $content = MarkupToHTML($pagename, $p['text']);<br> return "<$tag><![CDATA[$content]]></$tag>";<br><br>Roman<br><br>_______________________________________________
<br>pmwiki-users mailing list<br><a href="mailto:pmwiki-users@pmichaud.com">pmwiki-users@pmichaud.com</a><br><a href="http://www.pmichaud.com/mailman/listinfo/pmwiki-users">http://www.pmichaud.com/mailman/listinfo/pmwiki-users
</a><br></blockquote></div><br>