xml RSS フィードに関する xslt 情報を表示する必要があります。xml ソースは次のとおりです。
<description><![CDATA[<p>
<img style="margin: 10px;
float: left;" alt="Nuevo modelo general de negocio"
src="http://mysite.es/images/figure1.jpg" width="196" height="147" />
La compañía apuesta por un marcado giro en el modelo]]>
</description>
私は使用しています:
<xsl:value-of select="description" disable-output-escaping="yes"/>
しかし、70x70 などのサイズでサイズ変更された画像を表示する必要があるため、レンダリングは良くありません。
私はこれを試しましたが、間違っています:
<xsl:value-of select="replace("description","images/","images/resized/images/")"
disable-output-escaping="yes"/>
私にとって完璧な解決策は、タグから src プロパティとテキストの両方を分離して抽出することです。
よろしく、 マリア