Re: Quote/String problem with DTML
"Thorsten Fox" <[email protected]>
| Newsgroups | gmane.comp.cms.zms.devel |
|---|---|
| Message-ID | <[email protected]> |
> How can I write quote characters within a string? There's an example:
> <dtml-call "container.append('<img src=___' + image.getHref(REQUEST) +
'___>')">
This should work:
<dtml-call "container.append('<img
src=\'%s\'>'%image.getHref(REQUEST))">
Greatings,
tf