Skip to content

Instantly share code, notes, and snippets.

@neingeist
Last active December 15, 2015 12:08
Show Gist options
  • Save neingeist/5257647 to your computer and use it in GitHub Desktop.
Save neingeist/5257647 to your computer and use it in GitHub Desktop.
convert rss to wikitext
<?xml version="1.0"?>
<stylesheet version="1.0" xmlns="http://www.w3.org/1999/XSL/Transform">
<output method="text" indent="no" />
<template match="/">
<for-each select="//item">
<text>== Title: </text><value-of select="title"/><text> ==&#10;</text>
<for-each select="enclosure">
<text>* </text><value-of select="@url"/><text>&#10;</text>
</for-each>
<text>&#10;</text>
</for-each>
</template>
</stylesheet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment