Pekyll

NAME

Pekyll - simple static website generator

SYNOPSIS

use Pekyll;
    use Pekyll::Routers;
    use Pekyll::Compilers;
my %rules = (
        'assets/*' => { router=>&router_id, compiler=>&plain_copy },
        'static/*' => { router=>&ext2html,  compiler=>&compile_static },
        '_end'     => &wrap_up,
      );
my $pekyll = Pekyll.new(:%rules);
    $pekyll.build('src', 'dist');
sub compile_static($src, $target) { ...  }
    sub wrap_up($dst) { ... }

AUTHOR

Nuno Carvalho

The Camelia image is copyright 2009 by Larry Wall. "Raku" is trademark of the Yet Another Society. All rights reserved.