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

HTML::Tmojo - Dynamic Text Generation Engine

SYNOPSIS

  my $tmojo = HTML::Tmojo->new(
    template_dir => '/location/of/templates',
    cache_dir    => '/place/to/save/compiled/templates',
  );
  
  my $result = $tmojo->call('my_template.tmojo', arg1 => 1, arg2 => 3);
  
  # HONESTLY, THIS SYNOPSIS DOESN'T COVER NEARLY ENOUGH.
  # GO READ TMOJO IN A NUTSHELL

ABSTRACT

  Tmojo is used for generating dynamic text documents.
  While it is particularly suited to generating HTML
  and XML documents, it can be used effectively to
  produce any text output, including dynamically
  generated source code.

AUTHOR

Will Conant <will@willconant.com>