]> git.donarmstrong.com Git - liborg-parser-perl.git/blob - lib/Org/Element/Comment.pm
Import original source of Org-Parser 0.23
[liborg-parser-perl.git] / lib / Org / Element / Comment.pm
1 package Org::Element::Comment;
2
3 use 5.010;
4 use locale;
5 use Moo;
6 extends 'Org::Element';
7
8 our $VERSION = '0.23'; # VERSION
9
10 1;
11 # ABSTRACT: Represent Org comment
12
13
14 =pod
15
16 =head1 NAME
17
18 Org::Element::Comment - Represent Org comment
19
20 =head1 VERSION
21
22 version 0.23
23
24 =head1 DESCRIPTION
25
26 Derived from L<Org::Element>.
27
28 =head1 ATTRIBUTES
29
30 =head1 METHODS
31
32 =head1 AUTHOR
33
34 Steven Haryanto <stevenharyanto@gmail.com>
35
36 =head1 COPYRIGHT AND LICENSE
37
38 This software is copyright (c) 2012 by Steven Haryanto.
39
40 This is free software; you can redistribute it and/or modify it under
41 the same terms as the Perl 5 programming language system itself.
42
43 =cut
44
45
46 __END__
47