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
### Keybase proof | |
I hereby claim: | |
* I am xokomola on github. | |
* I am xokomola (https://keybase.io/xokomola) on keybase. | |
* I have a public key ASB2V5DIfJs5T9ID5mZa9kBM2XsE3G4i6NChSocSDHU0sgo | |
To claim this, I am signing this object: |
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
<tables> | |
<table name="Sheet 1"> | |
<thead> | |
<tr> | |
<td>A</td> | |
<td>B</td> | |
<td>C</td> | |
</tr> | |
</thead> | |
<tbody> |
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
<!-- From http://ajwelch.blogspot.com/2008/01/identity-transform-for-xslt-20.html --> | |
<xsl:template match="element()"> | |
<xsl:copy> | |
<xsl:apply-templates select="@*,node()"/> | |
</xsl:copy> | |
</xsl:template> | |
<xsl:template match="attribute()|text()|comment()|processing-instruction()"> | |
<xsl:copy/> | |
</xsl:template> |