in reply to pod2man and Pod::Usage Weirdness

You should be able to use something like =for internal-use-only to mark that the POD following isn't for general consumption. See perlpod on =for and the optional identifier that can follow =begin.

Replies are listed 'Best First'.
Re^2: pod2man and Pod::Usage Weirdness
by skx (Parson) on Aug 14, 2006 at 20:47 UTC

    Thanks a lot, that helped me out completely.

    For reference I've settled on:

    =begin doc Read the global configuration file, then override with per-user conf +iguration file if present. =cut sub readConfigurationFile { . .. }
    Steve
    --