> that is,my xml tagged like 
> <img src=abcd.gif/>
> what should be my xsl-fo code so that I can get
> abcd.gif in pdf.
> i don't want again to write
> <fo:block>
> <fo:external-graphic src="file:abcd.gif"/>
> </fo:block> in my xsl file.
> instead i want to use 
> <xsl:template match="img">

<xsl:template match="img">
  <fo:block>
    <fo:external-graphic src="file:{@src}"/>
  </fo:block>
</xsl:template>

Jarno

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to