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

Orze - Another static website generator

VERSION

Version 1.11

DESCRIPTION

This module is only intended to be used by the script orze.

See Orze::Manual for more information.

new

Create a new orze project, given an xml tree and some options.

    my $project = XML::Twig->new->parsefile("project.xml");
    $project->set_pretty_print('indented');
    
    my $orze = Orze->new($project, %options);

compile

Build the project.

    my $orze = Orze->new($project, %options);
    $orze->compile;