From: Mischa POSLAWSKY Date: Wed, 29 Mar 2017 09:49:49 +0000 (+0200) Subject: common: say() to simplify html head lines X-Git-Tag: v1.10~285 X-Git-Url: http://git.shiar.nl/sheet.git/commitdiff_plain/65ee755208200729b5754d38aa35dc168251c3e7?hp=c0b45d8bc967cae8e54c03702e16f52222884867 common: say() to simplify html head lines --- diff --git a/common.inc.plp b/common.inc.plp index db5177b..18c2471 100644 --- a/common.inc.plp +++ b/common.inc.plp @@ -117,9 +117,9 @@ sub Html { EOT - print $_, "\n" for $meta->{stylesheet} || (); - print $_, "\n" for $meta->{raw} || (); - print qq{\n\n\n}; + say for $meta->{stylesheet} || (); + say for $meta->{raw} || (); + say qq{\n\n}; # dev indicator my $Dev = $ENV{HTTP_HOST} =~ /\bdev\./;