We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A second call to process produces the following error.
wrong target type in paste: 'XML::Twig', should be XML::Twig::Elt or a subclass at /home/www/Devo/Template-Flute/lib/Template/Flute.pm line 740
Here is code to illustrate the problem.
#!/usr/bin/perl use Template::Flute; my $spec = q{<specification> <list name="list" iterator="test"> <param name="value"/> </list> </specification> }; my $html = q{<html><div class="list"><div class="value">TEST</div></div></html>}; $flute = Template::Flute->new( template => $html, specification => $spec, values => { test => [ { value => $value } ] }, ); $flute->process; $flute->process; exit;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A second call to process produces the following error.
wrong target type in paste: 'XML::Twig', should be XML::Twig::Elt or a subclass at /home/www/Devo/Template-Flute/lib/Template/Flute.pm line 740
Here is code to illustrate the problem.
The text was updated successfully, but these errors were encountered: