Skip to content

Instantly share code, notes, and snippets.

@goozbach
Created January 3, 2010 21:25
Show Gist options
  • Save goozbach/268136 to your computer and use it in GitHub Desktop.
Save goozbach/268136 to your computer and use it in GitHub Desktop.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>RBM Gets rubbed off - Goozbach's tech tips</title>
</head>
<body>
<div id="one">
<div id="two">
<div id="three">
<div id="a">Div A</div>
<div id="b">Div B</div>
<div id="c">Div C</div>
</div>
</div>
</div>
</body>
</html>
<xsl:stylesheet version = '1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>
<xsl:output method="xml" />
<xsl:template match="div[@id='three']">
<xsl:copy-of select="." />
</xsl:template>
</xsl:stylesheet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment