I have a blogging service and would like my users to be able to export their blog from my site to Wordpress. Can someone guide me in creating OPML/XML format or any other way to allow them to import I am using Ruby on Rails 2.3.2.
+1
A:
Provide action which renders XML using view ActiveView and Builder.
E.g. you can create export
action in main controller.
Then add export.builder
file for that controller in views directory.
Using Builder syntax generate OPML output.
gertas
2010-10-01 09:37:03