File Coverage

blib/lib/Org/Element/TableCell.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 11 11 100.0


line stmt bran cond sub pod time code
1             package Org::Element::TableCell;
2              
3 5     5   1108 use 5.010;
  5         16  
4 5     5   35 use locale;
  5         10  
  5         26  
5 5     5   182 use Moo;
  5         12  
  5         25  
6             extends 'Org::Element';
7              
8             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
9             our $DATE = '2023-08-05'; # DATE
10             our $DIST = 'Org-Parser'; # DIST
11             our $VERSION = '0.560'; # VERSION
12              
13             1;
14             # ABSTRACT: Represent Org table cell
15              
16             __END__
17              
18             =pod
19              
20             =encoding UTF-8
21              
22             =head1 NAME
23              
24             Org::Element::TableCell - Represent Org table cell
25              
26             =head1 VERSION
27              
28             This document describes version 0.560 of Org::Element::TableCell (from Perl distribution Org-Parser), released on 2023-08-05.
29              
30             =head1 DESCRIPTION
31              
32             Derived from L<Org::Element>.
33              
34             =head1 ATTRIBUTES
35              
36             =head1 METHODS
37              
38             =head1 HOMEPAGE
39              
40             Please visit the project's homepage at L<https://metacpan.org/release/Org-Parser>.
41              
42             =head1 SOURCE
43              
44             Source repository is at L<https://github.com/perlancar/perl-Org-Parser>.
45              
46             =head1 AUTHOR
47              
48             perlancar <perlancar@cpan.org>
49              
50             =head1 CONTRIBUTING
51              
52              
53             To contribute, you can send patches by email/via RT, or send pull requests on
54             GitHub.
55              
56             Most of the time, you don't need to build the distribution yourself. You can
57             simply modify the code, then test via:
58              
59             % prove -l
60              
61             If you want to build the distribution (e.g. to try to install it locally on your
62             system), you can install L<Dist::Zilla>,
63             L<Dist::Zilla::PluginBundle::Author::PERLANCAR>,
64             L<Pod::Weaver::PluginBundle::Author::PERLANCAR>, and sometimes one or two other
65             Dist::Zilla- and/or Pod::Weaver plugins. Any additional steps required beyond
66             that are considered a bug and can be reported to me.
67              
68             =head1 COPYRIGHT AND LICENSE
69              
70             This software is copyright (c) 2023, 2022, 2021, 2020, 2019, 2017, 2016, 2015, 2014, 2013, 2012, 2011 by perlancar <perlancar@cpan.org>.
71              
72             This is free software; you can redistribute it and/or modify it under
73             the same terms as the Perl 5 programming language system itself.
74              
75             =head1 BUGS
76              
77             Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=Org-Parser>
78              
79             When submitting a bug or request, please include a test-file or a
80             patch to an existing test-file that illustrates the bug or desired
81             feature.
82              
83             =cut