| Markdent documentation | Contained in the Markdent distribution. |
Markdent::Event::StartTable - An event for the start of a table
version 0.17
This class represents the start of a table.
This class has the following attributes:
The caption for the table. This is optional.
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::StartTable; BEGIN { $Markdent::Event::StartTable::VERSION = '0.17'; } use strict; use warnings; use Markdent::Types qw( Str ); use namespace::autoclean; use Moose; use MooseX::StrictConstructor; has caption => ( is => 'ro', isa => Str, predicate => 'has_caption', ); with 'Markdent::Role::Event'; __PACKAGE__->meta()->make_immutable(); 1; # ABSTRACT: An event for the start of a table
__END__