Having a hard time following you. Hype is not really built to handle feeds, and we haven’t received many requests like that.
That being said, here’s one way we use RSS feeds within our documentation – it’s a quick way to show an RSS feed (complete with links) without building anything. This script pulls in recent articles from our documentation and displays them in a list by using a Google API:
feedexample.html.zip (2.0 KB)
The specific code we use to run this is:
<div id="blogfeed"></div>
<script type="text/javascript">
$(document).ready(function () {
$('#blogfeed').rssfeed('http://hype.desk.com/customer/portal/topics/34435-elements/articles.rss',
{
limit: 8,
header: false,
date: false,
content: false,
offset: 1,
errormsg: "An error occurred. Please let us know!",
linktarget: '_blank'
});
});
</script>
This code comes from: http://www.zazar.net/developers/jquery/zrssfeed/
Hope that helps!