Markdent::Event::Text - An event for plaint text


Markdent documentation Contained in the Markdent distribution.

Index


Code Index:

NAME

Top

Markdent::Event::Text - An event for plaint text

VERSION

Top

version 0.17

DESCRIPTION

Top

This class represents plain text.

ATTRIBUTES

Top

This class has the following attributes:

text

The text.

ROLES

Top

This class does the Markdent::Role::Event role.

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::Event::Text;
BEGIN {
  $Markdent::Event::Text::VERSION = '0.17';
}

use strict;
use warnings;

use Markdent::Types qw( Str ArrayRef );

use namespace::autoclean;
use Moose;
use MooseX::StrictConstructor;

has text => (
    is       => 'ro',
    isa      => Str,
    required => 1,
);

has _converted_from => (
    is        => 'ro',
    isa       => Str,
    predicate => '_has_converted_from',
);

has _merged_from => (
    is        => 'ro',
    isa       => ArrayRef[Str],
    predicate => '_has_merged_from',
);

with 'Markdent::Role::Event';

__PACKAGE__->meta()->make_immutable();

1;

# ABSTRACT: An event for plaint text




__END__