The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/perl

use strict;
use FindBin;
use lib ( "../lib", $FindBin::Bin, "$FindBin::Bin/../lib" );

use Ravenel;
use Ravenel::Document;

my $obj = new Ravenel( { 
	#'docroot' => $FindBin::Bin,
	'debug'   => $ARGV[0],
	'debug2'  => $ARGV[1],
	'dynamic' => 0,
} );

my Ravenel::Document $doc = $obj->add_document( {
	'data'         => qq(
	<html>
		<r:Foo:test abc="def" depth="1">
			<div>"Hello" <r:replace name="moo" depth="0"/> </div>
		</r:Foo:test>
	</html>), 

	'prefix'       => 'r:',
	'content_type' => 'html',
	'name' => 'test',
	#'path' => '/foo.html',
} );

my $res = $doc->parse();

eval $res;

print $@ if ( $@ );

print test->get_html_content( { 'moo' => 'bar', } ) . "\n";