Perl6::Pod::FormattingCode::M - class of M code


Perl6-Pod documentation Contained in the Perl6-Pod distribution.

Index


Code Index:

NAME

Top

Perl6::Pod::FormattingCode::M - class of M code

SYNOPSIS

Top

    =begin pod
    =use CustomCode TT<>
    sds M<TT: test_code>
    =end pod




DESCRIPTION

Top

Perldoc modules can define their own formatting codes, using the code. An code must start with a colon-terminated scheme specifier. The rest of the enclosed text is treated as the (verbatim) contents of the formatting code. For example:

    =use Perldoc::TT TT<>

    =head1 Overview of the M<TT: $CLASSNAME > class
    (version M<TT: $VERSION>)

    M<TT: get_description($CLASSNAME) >

The formatting code is the inline equivalent of a named block.

SEE ALSO

Top

http://zag.ru/perl6-pod/S26.html, Perldoc Pod to HTML converter: http://zag.ru/perl6-pod/, Perl6::Pod::Lib

AUTHOR

Top

Zahatski Aliaksandr, <zag@cpan.org>

COPYRIGHT AND LICENSE

Top


Perl6-Pod documentation Contained in the Perl6-Pod distribution.
package Perl6::Pod::FormattingCode::M;

#$Id$

use warnings;
use strict;
use Perl6::Pod::FormattingCode;
use base 'Perl6::Pod::FormattingCode';

1;
__END__