princepawn has asked for the wisdom of the Perl Monks concerning the following question:

In a pod docment, I have =item * Angryman::Vote =begin html Vote.html =end html But no hyperlink is being generated...instead the HTML is inserted literally. see http://stage.angryman.com/sysdoc

Replies are listed 'Best First'.
Re: pod =for and =begin not working
by btrott (Parson) on May 18, 2000 at 22:37 UTC
    You need:
    =item * Angryman::Vote =begin html <A HREF=Vote.html>Vote.html</A> =end html
    No return between the =begin and the next line. Try that. That's worked for me in the past, when I've had a similar problem.