| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Acme::CPANModules::WorkingWithDOC; |
|
2
|
|
|
|
|
|
|
|
|
3
|
4
|
|
|
4
|
|
234627
|
use strict; |
|
|
4
|
|
|
|
|
8
|
|
|
|
4
|
|
|
|
|
151
|
|
|
4
|
|
|
|
|
|
|
|
|
5
|
4
|
|
|
4
|
|
1973
|
use Acme::CPANModulesUtil::Misc; |
|
|
4
|
|
|
|
|
1966
|
|
|
|
4
|
|
|
|
|
543
|
|
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY |
|
8
|
|
|
|
|
|
|
our $DATE = '2023-12-04'; # DATE |
|
9
|
|
|
|
|
|
|
our $DIST = 'Acme-CPANModules-WorkingWithDOC'; # DIST |
|
10
|
|
|
|
|
|
|
our $VERSION = '0.001'; # VERSION |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
my $text = <<'MARKDOWN'; |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
The following are tools (programs, modules, scripts) to work with text document |
|
15
|
|
|
|
|
|
|
formats (DOC, DOCX, ODT). For working with PDF, see related list: |
|
16
|
|
|
|
|
|
|
Acme::CPANModules::WorkingWithPDF. |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
**Unorganized** |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
MARKDOWN |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
our $LIST = { |
|
30
|
|
|
|
|
|
|
summary => 'List of modules to work with text document formats (DOC, DOCX, ODT)', |
|
31
|
|
|
|
|
|
|
description => $text, |
|
32
|
|
|
|
|
|
|
tags => ['task'], |
|
33
|
|
|
|
|
|
|
}; |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
Acme::CPANModulesUtil::Misc::populate_entries_from_module_links_in_description; |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
1; |
|
38
|
|
|
|
|
|
|
# ABSTRACT: List of modules to work with text document formats (DOC, DOCX, ODT) |
|
39
|
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
__END__ |