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> &lt;<a href="mailto:romat2@gmail.com">
romat2@gmail.com</a>&gt; 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 &lt;<a href="mailto:paulgiacherio@gmail.com">
paulgiacherio@gmail.com</a>&gt; wrote:<br>&gt; Can anyone point me in the right direction on how to include the full text<br>&gt; of a page, with markup digested, in an RSS feed? I&#39;m looking to mimic blog<br>&gt; functionality, where an entire post can be sent in the RSS feed.
<br>&gt; I see the undigested excerpt example on the Web Feeds page [<br>&gt; <a href="http://www.pmwiki.org/wiki/PmWiki/WebFeeds">http://www.pmwiki.org/wiki/PmWiki/WebFeeds</a> ], and was<br>&gt; wondering if a &quot;digested excerpt&quot; were possible.
<br><br>Following quick copy from my config should give you the direction:<br><br>$FeedFmt[&#39;rss&#39;][&#39;item&#39;][&#39;description&#39;] = &#39;FeedText&#39;;<br><br>function FeedText($pagename, &amp;$page, $tag) {
<br>&nbsp;&nbsp;$p = ReadPage($pagename);<br>&nbsp;&nbsp;$content = MarkupToHTML($pagename, $p[&#39;text&#39;]);<br>&nbsp;&nbsp;return &quot;&lt;$tag&gt;&lt;![CDATA[$content]]&gt;&lt;/$tag&gt;&quot;;<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>