1Pod::Eventual::Simple(3U)ser Contributed Perl DocumentatiPoond::Eventual::Simple(3)
2
3
4
6 Pod::Eventual::Simple - just get an array of the stuff Pod::Eventual
7 finds
8
10 version 0.093330
11
13 use Pod::Eventual::Simple;
14
15 my $output = Pod::Eventual::Simple->read_file('awesome.pod');
16
17 This subclass just returns an array reference when you use the reading
18 methods. The arrayref contains all the Pod events and non-Pod content.
19 Non-Pod content is given as hashrefs like this:
20
21 {
22 type => 'nonpod',
23 content => "This is just some text\n",
24 start_line => 162,
25 }
26
27 For just the POD events, grep for "type" not equals "nonpod"
28
30 Ricardo SIGNES <rjbs@cpan.org>
31
33 This software is copyright (c) 2009 by Ricardo SIGNES.
34
35 This is free software; you can redistribute it and/or modify it under
36 the same terms as the Perl 5 programming language system itself.
37
38
39
40perl v5.16.3 2009-11-29 Pod::Eventual::Simple(3)