TagFilter 0.04 TagFilter is a subclass of HTML::Parser with a single purpose: it will remove unwanted html tags and attributes from a piece of text. It can act in a more or less fine-grained way - you can specify permitted tags, permitted attributes of each tag, and permitted values for each attribute in as much detail as you like. For many uses the following will suffice: my $filter = new TagFilter; $filter->parse($my_text); print $filter->output(); One day it might try and find a place in the HTML:: namespace, but it needs a period of public humiliation first. There's lots of pod. INSTALLATION perl Makefile.PL make make install as usual. You can run make test if you wish, but at the moment it's little more than a syntax check :( william ross will@spanner.org