xml.config ファイルを変更すると、リンクの上に空白行が生成されます。なぜそれが起こっているのか分かりません。どうすれば削除できますか?
リスト要素の xml.config コードは次のとおりです。
<li>
<xsl:value-of select="$prefix" />
<xsl:if test="number(ParentEntityID) != 0">
<!-- <span class="catMark">>></span>  -->
</xsl:if>
<a href="{concat('c-',EntityID,'-',ise:FormatStringForLink(SEName),'.aspx')}">
<xsl:if test="EntityID = $CategoryID or descendant::Entity/EntityID = $CategoryID">
<xsl:attribute name="style">font-weight:bold</xsl:attribute>
</xsl:if>
<xsl:value-of select="$eName"/>
</a>
<xsl:if test="count(child::Entity)>0 and (EntityID = $CategoryID or descendant::Entity/EntityID = $CategoryID)">
<ul>
<xsl:apply-templates select="Entity">
<xsl:with-param name="prefix" select="concat($prefix, '  ')"/>
</xsl:apply-templates>
</ul>
</xsl:if>
</li>
ページが読み込まれると、次のようになります。
<li>
<a href="c-56-holiday.aspx">Holiday</a>
</li>