>
> Did you try to use escmode=0 in in general configuration
> or locally:
>
> [- $HTML::Embperl::escmode=0; -]
> [+ "<b> HI! <\b>" +]
> [- $HTML::Embperl::escmode=1; -]
>
This could be written as
[+ local $escmode = 0 ; "<b> HI! <\b>" +]
but it will only work if optRawInput is set (which should be done anyway if
you are directly editing the html source). If optRawInput is not set,
because you are using a highlevel html editor, you have to write
[+ local $escmode = 0 ; "<b> HI! <\b>" +]
which will a normal high level html editor do for you.
Better would be writing:
<b>[+ "Hi!" +]</b>
Gerald
-------------------------------------------------------------
Gerald Richter ecos electronic communication services gmbh
Internetconnect * Webserver/-design/-datenbanken * Consulting
Post: Tulpenstrasse 5 D-55276 Dienheim b. Mainz
E-Mail: [EMAIL PROTECTED] Voice: +49 6133 925151
WWW: http://www.ecos.de Fax: +49 6133 925152
-------------------------------------------------------------
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]