xsl-list
[Top] [All Lists]

Re: [xsl] Cant remove meta data

2009-01-03 09:05:42
Graeme Kidd wrote:

I am currently working on a XML file that was made using Adobe Acrobat which includes meta data at the top of the XML file. Some how some of the RDF data is still getting printed into the output XML. Given this following example any idea why this is happening?

    <xsl:template match="TaggedPDF-doc/Part">
        <course>
            <xsl:apply-templates select="Sect"> </xsl:apply-templates>
        </course>
    </xsl:template>

If you only want to process TaggedPDF-doc/Part then add a template
  <xsl:template match="/">
    <xsl:apply-templates select="TaggedPDF-doc/Part"/>
  </xsl:template>
doing that. Otherwise the default templates kick in:
  http://www.w3.org/TR/xslt#built-in-rule
and that way the text in the other elements is copied to the output.


--

        Martin Honnen
        http://JavaScript.FAQTs.com/

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--