changes to support UTF-8 encoding from
[webpac] / filter / isn_swish.pm
1 #!/usr/bin/perl -w
2
3 # example filter to convert ISBN and ISSN to hyphen and non-hyphen version
4
5 sub isn_swish {
6         my @out;
7         foreach my $nr1 (@_) {
8                 push @out,$nr1; # save original
9                 $nr1 =~ s/\-//g;
10                 push @out,$nr1; # save version without hyphens
11         }
12         return @out;
13 }
14
15 1;