| Markdent documentation | Contained in the Markdent distribution. |
Markdent::Event::EndParagraph - An event for the end of a paragraph
version 0.17
This class represents the end of a paragraph.
This class does the Markdent::Role::Event 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::Event::EndParagraph; BEGIN { $Markdent::Event::EndParagraph::VERSION = '0.17'; } use strict; use warnings; use namespace::autoclean; use Moose; use MooseX::StrictConstructor; with 'Markdent::Role::Event'; __PACKAGE__->meta()->make_immutable(); 1; # ABSTRACT: An event for the end of a paragraph
__END__