This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Problems With Passing HTML Needing Quotes


<img height="300" width="300" src="/transform/content/JJJ/JJJ_customer/jjj.gif" />

All attributes *must* be quoted. This won't give you an error, it must be at another place in your code.

You can try

<img src="/transform/content/JJJ/JJJ_customer/jjj.gif">
<xsl:attribute name="height">300</xsl:attribute>
<xsl:attribute name="width">300</xsl:attribute>
</img>

but it's longer and no difference in the logic. Again: Have a look at the rest of the code.

Regards,

Joerg


XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]