The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

NAME

Perl6::Pod::Parser::Utils - set of useful functions

SYNOPSIS

use Perl6::Pod::Parser::Utils qw(parse_URI );

DESCRIPTION

Set of useful functions

METHODS

parse_URI ($string)

Parse Pod's URI:.

scheme:path#section_name(rules)

For example:

test.pod
file:bundle.pod(para :public)
file:../file1.txt
Name|http://www.com#test

Return stucture:

{
'is_external' => 1,
'name' => 'Name',
'section' => 'txt',
'address' => 'example.com/index.html',
'scheme' => 'http'
}
'../data/test.pod':
{
'is_external' => '',
'name' => '',
'section' => '',
'address' => '../data/test.pod',
'scheme' => 'file'
}
'http://www.com/d.pod(head1 :todo, para)':
{
'is_external' => '1',
'name' => '',
'section' => '',
'address' => 'www.com/d.pod',
'scheme' => 'http',
'rules' => 'head1 :todo, para'
}

SEE ALSO

http://perlcabal.org/syn/S26.html

AUTHOR

Zahatski Aliaksandr, <zag@cpan.org>

COPYRIGHT AND LICENSE

Copyright (C) 2010 by Zahatski Aliaksandr

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.

1 POD Error

The following errors were encountered while parsing the POD:

Around line 19:

=back without =over