-
Notifications
You must be signed in to change notification settings - Fork 91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reduce POD warnings and errors #58
Reduce POD warnings and errors #58
Conversation
This corrects the 'Spurious text after =cut' errors found by podchecker.
This removes the 'No items in =over' warning from podchecker
Inside POD links (L<>), one needs to escape special characters such as / and |. This change replaces the slash char in the link with its relevant POD escape: E<sol>. Admittedly this is hard to read in the plain text, however the generated link correctly jumps to its target and podchecker doesn't complain so much.
Using L<> for sectioned links (e.g. L<perl(1)>) is deprecated. The Pod::Checker docs state that "POD hyperlinks may point to POD documents only." This change also removes a warning from podchecker.
|
Any chance of following this with an Thanks! |
|
Sure, no worries! I've got a couple of other ideas which would probably fit well with such a test, so let's keep this PR on ice until I've gotten the other code written. |
|
As per short IRC conversation this PR will be closed with no further action. The outstanding work is resolved as follows: |
|
@paultcochrane let me know if I missed something ;) |
|
@ribasushi looks good :-) |
These changes fix all errors and most warnings thrown by
podchecker.Comments and feedback are most certainly welcome.