in reply to Re^2: Ordering meta tag attributes with HTML::Element
in thread Ordering meta tags with HTML::Element
for my $m (sort keys %meta) { my $m_el = HTML::Element->new('meta'); $m_el->attr('0name',$m); $m_el->attr('1content',$meta{$m}); $head->push_content($m_el); } my $out = $body->as_HTML('<>&',' ',{}); $out=~s/0name/name/g; $out=~s/1content/content/g; print $out;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Ordering meta tag attributes with HTML::Element
by Corion (Patriarch) on Jun 15, 2016 at 09:28 UTC | |
by Cow1337killr (Monk) on Jun 24, 2016 at 00:04 UTC | |
|
Re^4: Ordering meta tag attributes with HTML::Element
by soonix (Chancellor) on Jun 15, 2016 at 09:45 UTC |