rss_converter_twitter.com.xsl: strip the style attribute from HTML elements
[tweeper.git] / src / rss_converter_twitter.com.xsl
index 58539ae..fc250e5 100644 (file)
@@ -35,7 +35,7 @@
     <!-- Identity transform -->
     <xsl:template match="@*|node()">
         <xsl:copy>
-            <xsl:apply-templates select="@*|node()"/>
+            <xsl:apply-templates select="@*[not(name() = 'style')]|node()"/>
         </xsl:copy>
     </xsl:template>