[EMAIL PROTECTED] wrote:
> A clearer example:
> <html>
> ${function1(param1,
>         param2, 
>        param3
>        ...
>         param100}
> </html>

Seems this does not work though it should. I'll file this as a bug.

For now, you can use these workarounds:

<?python result = function1(param1,
     param2,
     param3
     ...
     param100} ?>
$result

or

<span py:replace="function1(param1,
     param2,
     param3
     ...
     param100" />

or in your case

<html py:content="function1(param1,
     param2,
     param3
     ...
     param100" />

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/turbogears
-~----------~----~----~----~------~----~------~--~---

Reply via email to