Skip to content

Instantly share code, notes, and snippets.

@neilang
Last active December 31, 2015 05:18
Show Gist options
  • Save neilang/7939549 to your computer and use it in GitHub Desktop.
Save neilang/7939549 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" encoding="utf-8" indent="no" media-type="text/html" />
<xsl:template match="/">
<xsl:apply-templates select="//api-v1-entities-event-item" />
</xsl:template>
<xsl:template match="api-v1-entities-event-item">
<h1><xsl:value-of select="title" /></h1>
</xsl:template>
</xsl:stylesheet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment