common: enable perl v5.14 features everywhere
[sheet.git] / latin.plp
index 68e6a83b03462d2b9ff93faf4e93dfd57d8a8860..9dd8fe93ada0c9e16377184dc1d061a179d8acc0 100644 (file)
--- a/latin.plp
+++ b/latin.plp
@@ -2,13 +2,14 @@
 
 Html({
        title => 'latin alphabet cheat sheet',
-       version => '1.2',
+       version => '1.3',
        description => [
        ],
        keywords => [qw'
                latin roman alphabet script letter unicode font glyph abc
-               writing comparison character sample test language spelling
-               cursive fraktur blind deaf
+               code encoding spelling symbol writing comparison character
+               secret cursive fraktur blind braille morse deaf asl hand
+               barcode bar color semaphore flag
        '],
        stylesheet => [qw'light dark red'],
        data => ['writing-latn.inc.pl'],
@@ -21,14 +22,28 @@ Html({
                src: url("/suetterlin.ttf");
        }
        .glyphs tr:first-child+tr+tr td { font-family: Suetterlin }
+
+       svg path:not([fill]) {
+               stroke: currentColor;
+               fill: none;
+       }
+
+       td {
+               vertical-align: top;
+       }
+       td > svg {
+               vertical-align: middle;
+       }
 </style>
 
 <h1>Latin alphabet</h1>
 
-<p>Also see <a href="/writing">other alphabets</a>
+<p>Variant encodings of the common ASCII (latin, roman,
+or <span title="fuck yeah!">'mercan</span>) letters A–Z.
+Also see <a href="/writing">related alphabets</a>
 and <a href="/unicode">common chars</a>.</p>
 
-<div class="-diinfo">
+<div>
 
 <:
 my @table = do 'writing-latn.inc.pl';
@@ -36,10 +51,11 @@ if ($! or $@) {
        printf "<p class=error>Table data not found: <em>%s</em>.</p>\n", $@ || $!;
 }
 else {
-       print '<table class="glyphs">';
-       print ref $_ ne 'ARRAY' ? "<tr><th>$_" : map {/^<td/ ? $_ : "<td>$_"} @$_ for @table;
-       print "</table>\n\n";
+       say '<table class="glyphs">';
+       print ref $_ ne 'ARRAY' ? "<tr><th>$_\n" : map {/^<td/ ? $_ : "\t<td>$_\n"} @$_
+               for @table;
+       say "</table>\n";
 }
 
-print "</div>\n";
+:></div>