Como posso aplicar xslt2.0 a qualquer arquivo html no Ubuntu?
Estou procurando algo que faça isso funcionar:
wget -qO- "https://www.amazon.com/" | ????? | saxonb-xslt -o:output.xml -xsl:transform20.xsl -s:-
Tem de ser robusto o suficiente para trabalhar com html na natureza, por ex. link link
transform20.xsl:
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>