mplayer: abbreviated descriptions for g/y/x/z
[sheet.git] / perl.plp
1 <(common.inc.plp)><:
2
3 Html({
4         title => 'perl version cheat sheet',
5         version => 'v1.0',
6         keywords => [qw'
7                 perl version feature features comparison
8                 sheet cheat overview summary
9         '],
10         stylesheet => [qw'light dark red'],
11 });
12
13 :>
14 <h1>Perl cheat sheets</h1>
15
16 <:
17 my $info = do 'perl.inc.pl' or die $@ // $!;
18 for my $ver (reverse sort keys %{$info}) {
19         print '<div class="section">'."\n";
20         printf '<h2>%vd</h2><dl>'."\n", $ver;
21         printf '<dt>%s<dd>%s', Entity(@{$_}), '<br/>' for @{ $info->{$ver} };
22         print "</dl>\n";
23         print "</div>\n\n";
24 }
25