The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

App::PYX2XML - Perl class for pyx2xml application.

SYNOPSIS

 use App::PYX2XML;

 my $obj = App::PYX2XML->new;
 $obj->run;

METHODS

new

 my $obj = App::PYX2XML->new;

Constructor.

Returns instance of object.

run

 $obj->run;

Run.

Returns undef.

EXAMPLE

 use strict;
 use warnings;

 use App::PYX2XML;

 # Run.
 exit App::PYX2XML->new->run;

 # Output:
 # Usage: ./examples/ex1.pl [-e in_enc] [-h] [-i] [-s no_simple] [--version] [filename] [-]
 #         -e in_enc       Input encoding (default value is utf-8).
 #         -h              Print help.
 #         -i              Indent output.
 #         -s no_simple    List of element, which cannot be a simple like <element/>. Separator is comma.
 #         --version       Print version.
 #         [filename]      Process on filename
 #         [-]             Process on stdin

DEPENDENCIES

Getopt::Std, PYX::SGML::Tags, Tags::Output::Indent, Tags::Output::Raw.

REPOSITORY

https://github.com/michal-josef-spacek/App-PYX2XML.

AUTHOR

Michal Josef Špaček mailto:skim@cpan.org

http://skim.cz

LICENSE AND COPYRIGHT

© 2015-2021 Michal Josef Špaček

BSD 2-Clause License

VERSION

0.06