<xsl:variable name="screen-name" select="//div[@class='user-actions btn-group not-following ']/@data-screen-name"/>
- <xsl:template match="//li[@data-item-id and @data-item-type='tweet']">
+ <xsl:template match="//div[@class='permalink-inner permalink-tweet-container'] | //li[@data-item-id and @data-item-type='tweet']">
<xsl:variable name="user-name" select=".//div[@data-tweet-id]/@data-screen-name"/>
<xsl:variable name="item-content" select=".//p[contains(@class, 'js-tweet-text')]"/>
<xsl:variable name="item-media" select=".//div[contains(@class, 'AdaptiveMedia-container')]"/>
</url>
</image>
<xsl:apply-templates select="//ol[@id='stream-items-id']/li[@data-item-id and @data-item-type='tweet' and not(contains(@class, 'has-profile-promoted-tweet'))]"/>
+
+ <!-- These rules will only match on permalink URLs -->
+ <xsl:apply-templates select="//div[@class='permalink-inner permalink-tweet-container']"/>
+ <xsl:apply-templates select="//div[@data-component-context='replies']//li[@data-item-id and @data-item-type='tweet' and not(contains(@class, 'has-profile-promoted-tweet'))]"/>
+
</channel>
</rss>
</xsl:template>