来自此XML:
<log>
<found>
<color bgcolor="red">This is a silly <u>dummy</u> text with <color color="green">colored</colored> words and some <b>emphasized</b> ones</color>
</found>
<notfound>
This is a silly <color color="red">stupid</color> text
</notfound>
</log>
我必须制作这个HTML:
<p>Found : <pre><span style="background-color:red;">This is a silly <u>dummy</u> text with <span style="color:green;">colored</span> words and some <b>emphasized</b> ones</span></pre></p>
<p>Not Found : <pre>This is a silly <span style="color:red;">stupid</span> text</pre></p>
我试着用来实现这一点
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" encoding="UTF-8"/>
<xsl:apply-templates select="/log"/>
<xsl:template match="log">
<xsl:apply-templates select="found"/>
<xsl:apply-templates select="notfound"/>
</xsl:template>
<xsl:template match="found">
<xsl:if test=". != ''">
<p>Found : <pre><xsl:apply-templates name="./color"/></pre></p>
</xsl:if>
</xsl:template>
<xsl:template match="notfound">
<xsl:if test=". != ''">
<p>Not found : <pre><xsl:apply-templates name="./color"/></pre></p>
</xsl:if>
</xsl:template>
<xsl:template match="*/color">
<span>
<xsl:attribute name="style">
<xsl:if test="./@color != ''">
color:<xsl:value-of select="./@color"/>;
</xsl:if>
<xsl:if test="./@bgcolor != ''">
background-color:<xsl:value-of select="./@bgcolor"/>;
</xsl:attribute>
<xsl:apply-templates select="./color"/>
<xsl:copy-of select="text()"/>
</span>
</xsl:template>
</xsl:stylesheet>
但它失败了,因为它剥离了它可能找到的<u>
、<b>
或<i>
中的所有内容(见<found>
),或者把所有有色的东西放在所有其他内容之前(见<notfound>
):
<p>Found : <pre><span style="background-color:red;">This is a silly text with <span style="color:green;">colored</span> words and some ones</span></pre></p>
<p>Not Found : <pre><span style="color:red;">stupid</span>This is a silly text</pre></p>
我哪里错了?
非常感谢您的帮助!
我没有2.0版本,但我可以将其更改为可用的1.0版本。评论中的重要变化:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" encoding="UTF-8"/>
<xsl:template match="log">
<xsl:apply-templates select="found"/>
<xsl:apply-templates select="notfound"/>
</xsl:template>
<xsl:template match="found">
<xsl:if test=". != ''">
<p>Found : <pre><xsl:apply-templates/></pre></p>
</xsl:if>
</xsl:template>
<xsl:template match="notfound">
<xsl:if test=". != ''">
<p>Not found : <pre><xsl:apply-templates/></pre></p>
</xsl:if>
</xsl:template>
<xsl:template match="color">
<span>
<xsl:attribute name="style">
<xsl:if test="./@color != ''">color:<xsl:value-of select="./@color"/>;</xsl:if>
<xsl:if test="./@bgcolor != ''">background-color:<xsl:value-of select="./@bgcolor"/>;</xsl:if>
</xsl:attribute>
<!-- this is needed to process the inner tags -->
<xsl:apply-templates/>
</span>
</xsl:template>
<!-- This prints underlined and bold text. -->
<xsl:template match="*">
<xsl:copy-of select="."/>
</xsl:template>
</xsl:stylesheet>
据我所见,您希望:
- 将
<found>
和<notfound>
标记更改为字符串,并在之前添加<p>
标记,在之后添加<pre>
标记 - 将
<color bgcolor="red">
更改为<span style="color:red;">
,将</color>
更改为</span>
我要做的是使用Beautiful Soup,对标签进行迭代,并根据1和2对它们进行更改。