[ic] Find & replace on display

Davor Ocelic docelic at mail.inet.hr
Mon May 2 15:35:54 EDT 2005


> Look at Interchange filters (code/filter/ directory in the distribution).

code/Filter/ actually.

> It should be trivial to create a filter of your linking (you can include

Make that "liking".

So basically, the following in catalog.cfg:

CodeDef space_to_dash Filter
CodeDef space_to_dash Description SPACE to DASH
CodeDef space_to_dash Routine <<EOR
sub {
  my $val = shift;
  $val =~ s/ /-/g;
  return $val;
}
EOR


More information about the interchange-users mailing list