- or download this
my %meta = (
"Author"=>"J K Rolling",
...
<meta content="Harry Potter and the Philosopher's Stone" name="Title"
+/>
<meta content="J K Rolling" name="author" />
- or download this
my @meta = (
["Author"=>"J K Rolling"],
...
<meta content="J K Rolling" name="author" />
<meta content="Harry Potter and the Philosopher's Stone" name="Title"
+/>
- or download this
for my $m ( @meta ) {
my $m_el = HTML::Element->new('meta');
...
$m_el->attr('content',$m->[1]);
$head->push_content($m_el);
}