Help for this page

Select Code to Download


  1. or download this
    my %TAG = (
       ftp     => 'ftp://',
    ...
       pad     => '/index.pl?node_id=108949&user=',
       DEFAULT => '/index.pl?node=',
    );
    
  2. or download this
    # takes care of [tag://target|alt]
    $chunk =~ s/\[(\w+):\/\/(.*?)\|([^\]]+)\]/<a href="$TAG{$1}$2">$3<\/a>
    +/g;
    ...
    
    # takes care of [target]
    $chunk =~ s/\[([^\]]+)\]/<a href="$TAG{DEFAULT}$1">$1<\/a>/g;