The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Template::Plain - A Perl extension for very simple templates.

SYNOPSIS

  use Template::Plain;

  # Basic usage includes... 

  # Constructing a template by passing it's content. 
  my $template = Template::Plain->new("Hello, <%World%>!\n");

  # Then filling the template's place holders.
  my $ref = $template->fill({ World => 'Perl People' });

  # And doing something with the result. 
  print $$ref

  # More advanced usage includes... 

  # Filling place holders with other thingies.
  my $textref = $template->fill( { Foo => \$scalar_ref,
                                   Bar => \@or_a_list,
                                   Baz => \&a_sub_ref, } );

  # Explicitly using "default" content.
  my $template = Template::Plain->new();

  # Implicitly using "default" content via a class method.
  Template::Plain->fill({ PlaceHolder => 'Your Favorite Value' });

  # Upate the template content with the result of filling it. 
  $template->fill({ Name => "[: first_name :] [: last_name :]" }, 1);

  # Changing your delimiters.
  $template->delimiters('[:', ':]');

  # Changing your list separator.
  $template->list_separator(':');

  # Finding the tag names in your content.
  my @tags = $template->tags();

DESCRIPTION

Template::Plain fills place holders in templates. It is meant to be simple and lightweight.

Place holders consist of a name between two delimiters. White space between the name and the delimiters is ignored. The default delimiters are "<%" and "%>" but they can be changed. For example, the text "My name is <% name %>" contains the place holder: "<% name %>". This place holder would be equivalent to "<%name%>" (without whitespace.)

Template::Plain works in two modes. When the provided methods are called as class methods, they operate on a default template object stored in a private class variable. This default template is created by calling the constructor without arguments, thus using the "Default Content" described in the documentation of the new() method below.

Template::Plain is simple but your use of it doesn't have to be. Template::Plain can do a lot, especially if you make use of the delimiters() method and the optional argument to fill().

METHODS

new

The constructor can be called with either a single scalar argument or none at all.

When it is called with an argument, the argument is taken to be the template content.

Default Content

When the constructor is called without an argument, the template content is read from a filehandle. Which filehandle it is read from is determined as follows: If the DATA filehandle is found in the calling package, the template content is read from that. Else if the DATA filehandle is found in main::, the template content is read from there. Otherwise, the template content is read from the ARGV filehandle.

fill

This method expects a single hashref as an argument.

The keys of the hash referred to by the hashref should coincide with the place holder names and the values should be the data to be substituted (or references to the data.)

If a value is found to be a reference, it will be called if it is a code reference, dereferenced and joined with the defined list separator if it is a reference to an array, or dereferenced if it is a reference to a scalar.

Note that a reference to a hash isn't handled specially at all.

An optional argument can be supplied. If it is a true value, the template object's content will be replaced with the result of filling in its place holders. This can be useful for recursively filling templates.

This method returns a reference to a scalar holding the text resulting from filling the template.

delimiters

This method takes 0, 1, or 2 arguments.

When called with at least one argument, it sets the delimiters used to define place holders in the template.

If there is exactly one argument, it is assumed to be a reference to an array containing the left and right delimiters in that order. When called with two arguments, they are assumed to be the left and right delimiters in that order.

When called with no arguments no attempt is made to set the delimiters. Instead, this method returns a reference to an array containing the left and right delimiters in that order.

The default delimiters are '<%' and '%>'.

list_separator

This method takes either zero arguments or exactly one scalar argument.

If it is called with an argument, the list separator value is set to that value. The list separator is a string which is used to separate the values when a place holder is filled with an array.

This method always returns the current list separator.

By default, the list separator is a newline ("\n").

tags

This method takes no arguments. It returns a list of the place holder names used in the template in the order that they are used. If you use the same place holder more than once, it will appear in the returned list more than once.

IMPORTANT NOTE

Placeholder names must not have leading/trailing whitespace. Whitespace should be avoided in delimiters too.

LIMITATIONS

Template::Plain reads the whole template into memory. This helps to keep Template::Plain simple.

AUTHOR

Jeremy Madea, <jeremy@cpan.org>

BUGS

Please report any bugs or feature requests to:

bug-template-plain at rt.cpan.org

Or through the web interface at:

http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Template-Plain.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Template::Plain

You can also look for information at:

VERSION

Template::Simple version 1.00, released May, 2012

COPYRIGHT AND LICENSE

Copyright (C) 2012 by Jeremy Madea

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

SEE ALSO

perl.