keyboard: fix empty key titles
[sheet.git] / countries.plp
index 2bbe1f7612a20005516c7e7c36ea84818c0edbdb..1ed8eef2740097e99d66f22718ea98008872b014 100644 (file)
@@ -2,19 +2,19 @@
 
 Html({
        title => 'country code cheat sheet',
-       version => 'v1.1',
+       version => '1.3',
        description =>
                "Table of ISO-3166-1 country codes with the names of reserved territories.",
        keywords => [qw'country code cc tld cctld continent territory land table'],
        stylesheet => [qw'light dark circus mono red'],
-       data => ['countries.inc.pl'],
+       data => ['data/countries.inc.pl'],
 });
 
 :>
 <h1>ISO-3166-1α2 Country codes</h1>
 
 <:
-my $cc = do 'countries.inc.pl';
+my $cc = do 'data/countries.inc.pl';
 
 {
        printf '<table class="mcmap">';
@@ -57,7 +57,7 @@ my $cc = do 'countries.inc.pl';
                }
                print "\n";
        }
-       print "</table>\n";
+       say '</table>';
 }
 
 :>