1
Xslt2.0'ı ubuntu'daki herhangi bir html dosyasına nasıl uygulayabilirim?
Xslt2.0'ı ubuntu'daki herhangi bir html dosyasına nasıl uygulayabilirim? Bu işi yapacak bir şey arıyorum: wget -qO- "https://www.amazon.com/" | ????? | saxonb-xslt -o:output.xml -xsl:transform20.xsl -s:- Vahşi ortamda html ile çalışacak kadar sağlam olmak, örneğin https://www.nzz.ch/ http://www.spiegel.de/ 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>