| Perl6-Pod documentation | Contained in the Perl6-Pod distribution. |
Perl6::Pod::Block::comment - handle =comment block
=comment Don't nest this code block in the usual way...
=comment - Content to be ignored by all renderers
http://zag.ru/perl6-pod/S26.html, Perldoc Pod to HTML converter: http://zag.ru/perl6-pod/, Perl6::Pod::Lib
Zahatski Aliaksandr, <zag@cpan.org>
Copyright (C) 2009-2010 by Zahatski Aliaksandr
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.
| Perl6-Pod documentation | Contained in the Perl6-Pod distribution. |
package Perl6::Pod::Block::comment; #$Id$
use warnings; use strict; use Perl6::Pod::Block; use base 'Perl6::Pod::Block'; sub start { my $self = shift; $self->delete_element->skip_content; } 1; __END__