This code displays the latest YouTube video posted to any account. Because the YouTube RSS feed makes extensive use of tables and inline styles, we strip those out before displaying.
#set($rssTotal = 1) ## Replace "OklahomaChristian" with your own YouTube user name #pullRSSFeed("http://gdata.youtube.com/feeds/base/users/OklahomaChristian/uploads?alt=rss&v=2&orderby=published&client=ytapi-youtube-profile3") #foreach($content in $list) <h3><a href="$!content.link">$!content.title</a></h3> #set($content.description = $content.description.replaceAll('(<\/?table[^>]*>)|(<\/?tbody[^>]*>)|(<\/?tr[^>]*>)|(<\/?td[^>]*>)|(style="[^"]*")','')) <p>$!content.description</p> #end