in reply to HTML::Tiny, null parameter tags contradicting documentation
producesuse HTML::Tiny; my $co = HTML::Tiny->new; my $filename = 'theme1'; print $co->tag ('audio', { controls=>"", type => "audio\/mpeg", src => + "$filename.mp3"}); print "\n";
which ought to have the same effect.<audio controls="" src="theme1.mp3" type="audio/mpeg"></audio>
|
|---|