Created
November 17, 2011 14:22
-
-
Save commuterjoy/1373246 to your computer and use it in GitHub Desktop.
xsltproc foo.xsl foo.xml
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
<ol> | |
<li> | |
<a href="http://news.bbc.co.uk/democracylive/hi/northern_ireland/newsid_9583000/9583548.stm?t=86s">00:01:28</a>you find out who the <strong>some term</strong> the US and the</li> | |
</ol> |
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
<?xml version="1.0"?> | |
<xsl:stylesheet version="1.0" | |
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<xsl:template match="/"> | |
<xsl:apply-templates select="//li" /> | |
</xsl:template> | |
<xsl:template match="a"></xsl:template> | |
<xsl:template match="text()"> | |
<xsl:value-of select="."/> | |
</xsl:template> | |
<!-- optional --> | |
<xsl:template match="strong"> | |
*<xsl:value-of select="."/>* | |
</xsl:template> | |
</xsl:stylesheet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment