# $File: //member/autrijus/Template-Extract/lib/Template/Extract.pm $ $Author: autrijus $ # $Revision: #20 $ $Change: 10075 $ $DateTime: 2004/02/16 16:50:48 $ vim: expandtab shiftwidth=4 package Template::Extract; $Template::Extract::VERSION = '0.36'; use 5.006; use strict; use warnings; use constant RUN_CLASS => (__PACKAGE__ . '::Run'); use constant COMPILE_CLASS => (__PACKAGE__ . '::Compile'); our ( $DEBUG, $EXACT ); =head1 NAME Template::Extract - Extract data structure from TT2-rendered documents =head1 VERSION This document describes version 0.36 of Template::Extract, released February 17, 2004. =head1 SYNOPSIS use Template::Extract; use Data::Dumper; my $obj = Template::Extract->new; my $template = << '.'; . my $document = << '.'; Great links . print Data::Dumper::Dumper( $obj->extract($template, $document) ); =head1 DESCRIPTION This module adds template extraction functionality to the B