| Markdent documentation | Contained in the Markdent distribution. |
Markdent::Handler::Null - A handler which ignores all events
version 0.17
This class implements an event receiver which ignores all events.
This class provides the following methods:
This method creates a new handler.
This class does the Markdent::Role::Handler role.
See Markdent for bug reporting details.
Dave Rolsky <autarch@urth.org>
This software is copyright (c) 2010 by Dave Rolsky.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| Markdent documentation | Contained in the Markdent distribution. |
package Markdent::Handler::Null; BEGIN { $Markdent::Handler::Null::VERSION = '0.17'; } use strict; use warnings; use namespace::autoclean; use Moose; use MooseX::StrictConstructor; with 'Markdent::Role::Handler'; sub handle_event { return; } __PACKAGE__->meta()->make_immutable(); 1; # ABSTRACT: A handler which ignores all events
__END__