--- trunk/lib/Frey/Run.pm 2008/08/31 18:02:50 180 +++ trunk/lib/Frey/Run.pm 2008/09/09 23:15:46 184 @@ -44,7 +44,13 @@ } else { my $o = $class->new( %params ); $o->depends if $o->can('depends'); - $html = $o->markup; + if ( $o->can('html') ) { + warn "## turning over to $o->html"; + $o->html( $req ); + } else { + warn "## using $o->markup"; + $html = $o->markup; + } } warn ">>> markup $class ",length( $html ), " bytes\n";