X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/347ff57fabbe238835561648537b232ec2653190..8b237b43167a2443b69b6c0a3aec13c926782fc1:/browser.plp diff --git a/browser.plp b/browser.plp index 85ee802..8a5fba8 100644 --- a/browser.plp +++ b/browser.plp @@ -5,7 +5,7 @@ use List::Util qw(sum max first); Html({ title => 'browser compatibility cheat sheet', - version => 'v1.1', + version => 'v1.2', description => [ "Compatibility table of new web features (HTML5, CSS3, SVG, Javascript)", "comparing support and usage share for all popular browser versions.", @@ -293,6 +293,18 @@ sub featurescore { return $rank; } +sub formatnotes { + my @html = @_; + for (@html) { + s/\h* $//gmx; # trailing whitespace + s/(?<= [^.\n]) $/./gmx; # consistently end each line by a period + Entity($_); + s{ ` ([^`]*) ` }{$1}gx; + s{ \[ ([^]]*) \] \( ([^)]*) \) }{$1}gx; + } + return @html; +} + sub saytitlecol { my ($id) = @_; my $row = $caniuse->{data}->{$id}; @@ -313,9 +325,8 @@ sub saytitlecol { ); } $row->{title}; print '
'; - s/\.?$/./, print "

$_

" for map { ref $_ ? @$_ : $_ || () } - Entity($row->{description}), - map { s/\s*\n/\n
/g; $_ } $row->{notes}; + print "

$_

" + for formatnotes($row->{description}, $row->{notes} || ()); printf 'Resources: %s.', join(', ', map { sprintf '%s', EscapeHTML($_->{url}), $_->{title} } @$_) for grep { @$_ } $row->{links} // ();