X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/45a41242594517a044099d34be1868be1ddabe6e..aad474b0ccf6fddd73b11d8c7ed4c57093ce1741:/perl.plp diff --git a/perl.plp b/perl.plp index 02d0348..1699d9b 100644 --- a/perl.plp +++ b/perl.plp @@ -2,7 +2,7 @@ Html({ title => 'perl version cheat sheet', - version => '1.4', + version => '1.5', keywords => [qw' perl version feature features comparison sheet cheat overview summary @@ -85,36 +85,54 @@ for my $vernum (reverse sort keys %{$info}) { say '
'; for (@{ $verrow->{new} }) { my ($topic, $desc, $attr) = @{$_}; - if ($attr) { - my $title; - if (defined $attr->{experimental}) { - $title = 'experimental'; - } - if ($attr->{dropped}) { - next unless exists $get{v}; - $title = sprintf 'removed in %vd', $attr->{dropped}; - } - elsif ($attr->{stable}) { - $title .= sprintf ' until %vd', $attr->{stable}; - } - if ($attr->{experimental}) { - $title = sprintf '%s', - $attr->{experimental}, $title; - $attr->{name} //= $attr->{experimental}; - } - if ($attr->{feature}) { - my $prefix = sprintf 'feature', - $attr->{feature}; - $title = join ', ', $prefix, $title // (); - $attr->{name} //= $attr->{feature}; - } - $desc .= sprintf ' (%s)', $title if $title; - } + $desc .= featattrs($attr); my $ref = defined $attr->{name} && sprintf ' id="%s"', $attr->{name}; say sprintf '%s
%s', $ref, $topic, $desc || '
'; } + if (my $mods = $verrow->{modules}) { + for (@{$mods}) { + my ($name, $desc, $attr) = @{$_}; + my $ref = lc $name =~ s/::/_/gr; + $desc .= featattrs($attr); + printf '
use %s', $ref, $name; + say '
', $desc; + } + } say sprintf '
Unicode
v%s', $_ for $verrow->{unicode} || (); say '
'; say "\n"; } +sub featattrs ($attr) { + $attr or return ''; + ref $attr or $attr = {eg => $attr}; + my $title; + if (defined $attr->{experimental}) { + $title = 'experimental'; + } + if (defined $attr->{dropped}) { + next unless exists $get{v}; + $title = sprintf 'removed in %vd', $_ for $attr->{dropped} || (); + } + elsif ($attr->{stable}) { + $title .= sprintf ' until %vd', $attr->{stable}; + } + if ($attr->{experimental}) { + $title = sprintf '%s', + $attr->{experimental}, $title; + $attr->{name} //= $attr->{experimental}; + } + if ($attr->{feature}) { + my $prefix = sprintf 'feature', + $attr->{feature}; + $title = join ', ', $prefix, $title // (); + $attr->{name} //= $attr->{feature}; + } + $title = $title ? sprintf ' (%s)', $title : ''; + + if (my $eg = $attr->{eg}) { + my $pre = sprintf ' {%s}', Entity($eg); + $title = $pre . $title; + } + return $title; +}