Sledge-Template-Xslate version 0.01 =================================== NAME Sledge::Template::Xslate - Text::Xslate template system for Sledge VERSION This document describes Sledge::Template::Xslate version 0.0.1 SYNOPSIS package MyApp::Pages; use strict; use Sledge::Pages::Compat; use Sledge::Template::Xslate; # ... package MyApp::Pages::Foo; use strict; use utf8; use parent qw(MyApp::Pages); sub bar{ my $self = shift; $self->tmpl->set_option(input_layer => ':utf8');# Please use set_config method if you want to use utf-8. # ... } # ... DESCRIPTION Sledge::Template::Xslate is Text::Xslate template system for Sledge. SEE ALSO Sledge::Template Text::Xslate Text::Xslate::Syntax::Kolon INSTALLATION To install this module type the following: perl Makefile.PL make make test make install DEPENDENCIES None. COPYRIGHT AND LICENCE Copyright (C) 2010, Kenta Sato This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.