| Markdent documentation | Contained in the Markdent distribution. |
Markdent::Role::EventAsText - Indicates that an event has an as_text method
version 0.17
An event with an as_text method will do this 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::Role::EventAsText; BEGIN { $Markdent::Role::EventAsText::VERSION = '0.17'; } use strict; use warnings; use namespace::autoclean; use Moose::Role; requires 'as_text'; 1; # ABSTRACT: Indicates that an event has an as_text method
__END__