On Wed, 23 May 2001 14:19:03 -0400 (EDT), you wrote:

>  > I need to get rid of the 'style="text-decoration:none" ' and also the
>  > "<br>"
>  
>  Check out StripAttributes and StripTags. Documentation is here:
>  
>  http://www.newsclipper.com/writinghandlers.html
>  
>  You want to do something like:
>  
>    @$data = grep { $_ = StripAttributes($_,'style') } @$data;
>    @$data = grep { $_ = StripTags($_,'br') } @$data;
>  
>  David

Thanks David, it is now working after I added those two lines.:)
I will try to upload the handle into the pool.

--
Nikol
If you would like to unsubscribe from this mailing list send an email to
[EMAIL PROTECTED] with the body "unsubscribe newsclipperlist
YOUR_EMAIL_ADDRESS" (without the quotes).

Reply via email to