table of contents
| Pod::Abstract::Filter::overlay(3pm) | User Contributed Perl Documentation | Pod::Abstract::Filter::overlay(3pm) |
NAME¶
Pod::Abstract::Filter::overlay - Perform a method documentation overlay on a Pod document.
USAGE¶
Use the "paf" command to run this filter inline - for example:
$ paf -p overlay sort summary Pod::Abstract::Filter::overlay
Produces
NAME
METHODS
\ =begin :overlay =overlay METHODS Some::Class::Or::File =end :overlay
filter
new
param
require_params
run
AUTHOR
COPYRIGHT AND LICENSE
METHODS¶
filter¶
Inspects the source document for a begin/end block named ":overlay". The overlay block will be inspected for "=overlay" commands, which should be structured like:
=begin :overlay =overlay METHODS Some::Class::Or::File =end :overlay
Each overlay is processed in order. It will add any headings for the matched sections in the current document from the named source, for any heading that is not already present in the given section.
The main utility of this is to specify a superclass, so that all the methods that are not documented in your subclass become documented by the overlay. The "sort" filter makes a good follow up.
The start of overlaid sections will include:
=for overlay from <class-or-file>
You can use these markers to set sections to be replaced by some other document, or to repeat an overlay on an already processed Pod file. Changes to existing marked sections are made in-place without changing document order.
AUTHOR¶
Ben Lilburne <bnej80@gmail.com>
COPYRIGHT AND LICENSE¶
Copyright (C) 2009-2025 Ben Lilburne
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| 2025-11-16 | perl v5.40.1 |