我正在尝试处理来自另一个系统的 XML 文档,而我得到的 XML 是伪 HTML,我需要将其转换为 HTML。
示例 XML:
<DOC>
<Paragraph>This text is <bold>bold</bold> and this text is not.</Paragraph>
</DOC>
所需输出:
<BODY>
<P>This text is <b>bold</b> and this is not.</P>
</BODY>
使用 node() 值我能够在标记之前获取节点的值(此文本是 ),但我无法编写模板帽子将在标记之前处理部分节点,处理标记,然后返回到其余部分价值。有什么建议么?