Skip to content

Instantly share code, notes, and snippets.

@johnpuddephatt
Last active August 29, 2015 14:10
Show Gist options
  • Save johnpuddephatt/d068ff6df85dd9236363 to your computer and use it in GitHub Desktop.
Save johnpuddephatt/d068ff6df85dd9236363 to your computer and use it in GitHub Desktop.
<data>
<events>
<event-item type="one">Item</event-item>
<event-item type="two">Item two</event-item>
</events>
</data>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" indent="yes" />
<xsl:template match="/">
<hi>
<xsl:value-of select="events/event-item" />
</hi>
</xsl:template>
</xsl:stylesheet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment