Markdent::Event::EndHeader - An event for the end of a header


Markdent documentation Contained in the Markdent distribution.

Index


Code Index:

NAME

Top

Markdent::Event::EndHeader - An event for the end of a header

VERSION

Top

version 0.17

DESCRIPTION

Top

This class represents the end of a header.

ATTRIBUTES

Top

This class has the following attributes:

level

A number from 1-6 indicating the header's level.

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

use strict;
use warnings;

use Markdent::Types qw( HeaderLevel );

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

has level => (
    is       => 'ro',
    isa      => HeaderLevel,
    required => 1,
);

with 'Markdent::Role::Event';

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

1;

# ABSTRACT: An event for the end of a header




__END__