RE: help on escaping

2000-06-22 Thread Gerald Richter
> > Did you try to use escmode=0 in in general configuration > or locally: > > [- $HTML::Embperl::escmode=0; -] > [+ " HI! <\b>" +] > [- $HTML::Embperl::escmode=1; -] > This could be written as [+ local $escmode = 0 ; " HI! <\b>" +] but it will only work if optRawInput is set (which should be d

Re: help on escaping

2000-06-22 Thread olivier
Did you try to use escmode=0 in in general configuration or locally: [- $HTML::Embperl::escmode=0; -] [+ " HI! <\b>" +] [- $HTML::Embperl::escmode=1; -] Hope it helps... On Thu, 22 Jun 2000, Sherwin Daganato wrote: > Pls help me on this. > > how can i make this work? > [+ " HI! <\b>" +] > >

Re: help on escaping

2000-06-21 Thread Ilia Lobsanov
Sherwin Daganato wrote: > > i made a mistake in <\b>. it is supposed to be . > i think i made it work by doing like this > [+ " HI! <\/b\\>" +] > > Sherwin Daganato writes: > >Pls help me on this. > > > >how can i make this work? > >[+ " HI! <\b>" +] > > > >thanks. try setting $optRawI

Re: help on escaping

2000-06-21 Thread Sherwin Daganato
i made a mistake in <\b>. it is supposed to be . i think i made it work by doing like this [+ " HI! <\/b\\>" +] Sherwin Daganato writes: >Pls help me on this. > >how can i make this work? >[+ " HI! <\b>" +] > >thanks.