Source
### Smarty
# usage: {{smarty('検索語')}}
sub smarty {
my ($str) = @_;
my $prefix = 'http://smarty.php.net/manual/en/search.php?query=';
my $enc = url_encode($str);
return qq(<a href="$prefix$enc">$str</a>);
}
### Smarty
# usage: {{smarty('検索語')}}
sub smarty {
my ($str) = @_;
my $prefix = 'http://smarty.php.net/manual/en/search.php?query=';
my $enc = url_encode($str);
return qq(<a href="$prefix$enc">$str</a>);
}