Skip to content

Instantly share code, notes, and snippets.

@stilkov
Created July 17, 2013 16:43
Show Gist options
  • Save stilkov/6022298 to your computer and use it in GitHub Desktop.
Save stilkov/6022298 to your computer and use it in GitHub Desktop.
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="//link[@rel='import']">
<xsl:copy-of select="document(@href)" />
</xsl:template>
</xsl:stylesheet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment