1

背景

将文档从 OpenOffice 转换为 DocBook 格式。

问题

该文件的部分内容包括:

<ul><li><ul><li><ul><li><p>...</p></li></ul></li></ul></li></ul>

而文件的其他部分包括:

<ul><li><p>...</p></li></ul>

我尝试使用以下方法仅匹配最里面的ul标签:

<xsl:template match="xhtml:ul[not(child::xhtml:li/child::xhtml:ul)]">
...
</xsl:template>

但这不匹配。以下表达式:

<xsl:template match="xhtml:ul">

将按预期创建:

<itemizedlist>
<itemizedlist>
<itemizedlist>
...
</itemizedlist>
</itemizedlist>
</itemizedlist>

期望的输出

无论ul嵌套如何,所需的输出格式是:

<itemizedlist>
...
</itemizedlist>

问题

匹配最里面的子ul节点的正确语法是什么?

想法

有几种方法可以解决这个问题:

  • 搜索/替换原始文档(只有大约 20 个实例)。
  • xsl:test在节点内使用li查看子节点是否为ul.

什么 XPath 表达式可以工作?例如:

<xsl:template match="xhtml:ul[not(grandchild::xhtml:ul)]">

谢谢!

4

1 回答 1

0
<xsl:template match="xhtml:ul[not(descendant::xhtml:ul)]">
  <itemizedlist><xsl:apply-templates /></itemizedlist>
</xsl:template>
于 2012-07-09T22:10:45.790 回答