Hi
When I run the "xsl:" on the "Orginal xml:" file I get the result in "xml out"
but I want only the title not the footnote value from the second "value of select".
Anybody who have a solution for me
Orginal xml:
- ...
-
<section>
-
<title>
-
<phrase role="footnote reference">#
-
<footnote>
-
<para role="footnote text">
-
<phrase role="footnote reference">#Setting_service_parameter_VWPolo
-
</phrase>
-
</para>
-
</footnote>
-
</phrase>
-
Setting the service interval on Volkswagen with flexible service interval </title>
-
...
XSL :
- ...
-
<xsl:template match="/article/section[1]/title">
-
<title>
-
<footnote>
-
<para>
-
<xsl:value-of select="/article/section[1]/title/phrase/footnote/para/phrase"/>
-
</para>
-
</footnote>
-
<xsl:value-of select="/article/section[1]/title"/>
-
</title>
-
</xsl:template>
-
...
XML out:
- ...
-
<section>
-
<title>
-
<footnote>
-
<para>#Setting_service_parameter_VWPolo
-
</para>
-
</footnote>
-
##Setting_service_parameter_VWPolo Setting the service interval on Volkswagen with flexible service interval
-
</title>
-
...