0

入力 XML:

<root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Description><![CDATA[Audience: Andrew Reed, Senior Training Specialist, Microsoft Corporation<br/>This session is for individuals who spend significant time writing and creating documents and have some familiarity with Microsoft Word.<br/>Thanks.]]></Description>
</root>

XSLT:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
  <xsl:output method="html" indent="yes"/>
  <xsl:template  match="/root">
    <div>
      <xsl:value-of  disable-output-escaping="yes" select="Description"/>
    </div>
  </xsl:template>
</xsl:stylesheet>

BR が最初に出現した後、さらに BR タグをいくつか追加する必要があります。これは、Audience 行の後、他の説明が始まる前です。目的の出力が得られるように XSLT を変更してもらえますか?

だから私は以下のような出力が欲しい:

Audience: Andrew Reed, Senior Training Specialist, Microsoft Corporation


This session is for individuals who spend significant time writing and creating documents and have some familiarity with Microsoft Word.


Thanks.
4

1 に答える 1