|
Using Export Feature |
Top Previous Next |
|
To export data from the current RSS feed, open the export window, select a template and the path to the output file and press the “Export” button.
For example:
Template file:
$NOCRLF=0 $NAME=Basic HTML Page $FILEEXT=htm $DATEFORMAT=dd/mm/yyyy $TIMEFORMAT=hh:mm:ss <HTML> <HEAD> <TITLE> %FeedTitle% </TITLE> </HEAD> <BODY> <!-- ExtraLabs Software: http://www.extralabs.net -->
<A href="%FeedLink%"><H1>%FeedTitle%</H1></A> %ImageItem%<br> %FeedDescription%<br><br> <TABLE width="100%"> %BeginItemsRecord% <TR> <TD> %ItemPubTime% <BR> </TD> </TR> <TR> <TD> <B><A href="%ItemLink%">%ItemTitle%</A></B> </TD> </TR> <TR> <TD><BR> %ItemDescription% <BR> <BR> </TD> </TR> %EndItemsRecord% </TABLE>
</BODY> </HTML>
Output file (source code):
<HTML> <HEAD> <TITLE> My First RSS Feed </TITLE> </HEAD> <BODY> <!-- Generated by ExtraLabs Feed Editor [http://www.extralabs.net] --> <H1>My First RSS Feed</H1> <H2>This is my first RSS Feed. I created it with <a href="http://www.extralabs.net/feed-editor.htm">Feed Editor</a></H2> <BR> <TABLE width="100%">
<TR> <TD> 12/05/2005 22:56:09 </TD> </TR> <TR> <TD> <B><A href="http://mason.gmu.edu/~montecin/netterms.htm">Sample Topic: What is RSS?</A></B> </TD> </TR> <TR> <TD> An XML format for sharing content among different Web sites such as news items. How does it work? A Web site can allow other sites to publish some of its content by creating an RSS document and registers the document with an RSS publisher. A web publisher can post a link to the rss feed so users can read the distributed content on his/her site. <BR> </TD> </TR>
<TR> <TD> 12/05/2005 22:56:09 </TD> </TR> <TR> <TD> <B><A href="http://www.extralabs.net/feed-editor.htm">Sample Topic: What is Feed Editor?</A></B> </TD> </TR> <TR> <TD> Feed Editor is a powerful and easy-to-use RSS feed editor. With this program, you will be able to not only create new RSS feeds that look professionally, but also support them and update. <BR> </TD> </TR>
<TR> <TD> 12/05/2005 22:56:09 </TD> </TR> <TR> <TD> <B><A href="http://www.extralabs.net/products.htm">Sample Topic: What is ExtraLabs Software?</A></B> </TD> </TR> <TR> <TD> Founded in 2002, ExtraLabs Software is a dynamically expanding software development company, focused on producing NET software for home and corporate users. <BR> </TD> </TR>
</TABLE> </BODY> </HTML>
Output file (in browser):
My First RSS Feed This is my first RSS Feed. I created it with Feed Editor
|
ExtraLabs Software