Markdent::Role::EventAsText - Indicates that an event has an as_text method


Markdent documentation Contained in the Markdent distribution.

Index


Code Index:

NAME

Top

Markdent::Role::EventAsText - Indicates that an event has an as_text method

VERSION

Top

version 0.17

DESCRIPTION

Top

An event with an as_text method will do this role.

REQUIRED METHODS

Top

* $handler->as_text()

BUGS

Top

See Markdent for bug reporting details.

AUTHOR

Top

Dave Rolsky <autarch@urth.org>

COPYRIGHT AND LICENSE

Top


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__