使用HTML和XSLT转换的XML

时间:2012-02-29 18:17:15

标签: html xml xslt apache-fop

我尝试修改一个在标签内部有html的xml文档,我可以转换<p>并列出但我内部有粗体和斜体。我该怎么做?我使用xslt模板进行转换。

这是我的代码:

<Memoria>     
  <titulo>Memoria EUITI 2010</titulo>
  <Indice>
     <titulo>Indice 2010</titulo>
    <secciones>
      <seccion>
       <parent_id>1</parent_id>
         <titulo>INFORMACI&#211;N GENERAL</titulo>
          <contenido><p><strong>ESTO</strong> ES UNA <em>PRUEBA</em></p></contenido>
<ul>
    <li> caso de poner</li>
</ul>
<p>Ver si funciiona esto que si funciona ya esta</p>
<p> </p></contenido
      </seccion>
    </secciones>
  </Indice>
</Memoria>

我使用这个xslt转换:

<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="xml" indent="yes"/>

  <xsl:template match="/"> 

     <Memoria>
       <xsl:apply-templates select="//Memoria"/>
     </Memoria>
  </xsl:template>
  <xsl:template match="text()"/>

  <xsl:template match="titulo">
    <titulo>
      <xsl:value-of select="."/>
    </titulo>
  </xsl:template>

  <xsl:template match="Indice/titulo">
   <Indice>
      <xsl:value-of select="."/>
    </Indice>
  </xsl:template>

  <xsl:template match="Indice/secciones/seccion">
     <Seccion>
      <xsl:apply-templates select="contenido|titulo"/>
   </Seccion>

  </xsl:template>

  <xsl:template match="Indice/secciones/seccion/titulo">
    <nombre_seccion>
      <xsl:value-of select="."/>
    </nombre_seccion>
  </xsl:template>  


  <xsl:template match="contenido">
    <Contenido>
      <xsl:apply-templates select="p|ul"/>
    </Contenido>
  </xsl:template>


  <xsl:template match="p">
    <p>
      <xsl:value-of select="."/>
    </p>
  </xsl:template>

  <xsl:template match="ul">
    <ul>
      <xsl:for-each select="li">
    <li>
      <xsl:value-of select="."/>
    </li>
      </xsl:for-each>
    </ul>
 </xsl:template>
</xsl:stylesheet>

使用这个模板,我得到一个xml有效文档,但是这个文档没有进入:

  <contenido><p><strong>ESTO</strong> ES UNA <em>PRUEBA</em></p></contenido>

我该怎么做?

另一方面,我想在XSL-FO中使用另一个XSLT转换此结果文档,以生成带有FOP的PDF。我可以生成p和列表,但我不能生成粗体和草书。

这是正确的方法:

  

HTML-&GT; XML-&GT; XSL-FO

或者有没有办法直接转换代码?

1 个答案:

答案 0 :(得分:1)

如果要复制元素的混合内容,即包括所有标记,则需要使用copy-of而不是value-of。 E.g:

<xsl:template match="p">
  <xsl:copy-of select="."/>
</xsl:template>

这将输出p元素本身,所有文本内容和所有子元素,从而包含等等。