Created
January 3, 2010 21:25
-
-
Save goozbach/268136 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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