in reply to Re^4: rel="nofollow" tag syntax?
in thread rel="nofollow" tag syntax?
You already are using the CGI module, or something whose API is strikingly similar to the API of CGI.pm. Maybe you could just try out the example given to you to see whether it works for you or not. The following self-contained program works for me. Maybe it works for you too?
use strict; use CGI qw(a); my $url = 'http://perlmonks.net/'; print a({-href => $url, -rel => 'nofollow'}, $url);
If that still doesn't work for you, maybe you can show us the exact differences. If you need character-exact layout instead of what CGI.pm (or the module you're using whose API is similar to that of CGI.pm) provides you, then maybe one of the templating systems will do for you?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: rel="nofollow" tag syntax?
by bobafifi (Beadle) on Apr 17, 2007 at 17:00 UTC | |
by Joost (Canon) on Apr 17, 2007 at 17:03 UTC | |
by bobafifi (Beadle) on Apr 21, 2007 at 14:37 UTC | |
|
Re^6: rel="nofollow" tag syntax?
by bobafifi (Beadle) on Apr 17, 2007 at 16:02 UTC |