browser: hover description and notes
[sheet.git] / writing.plp
index d71dba445eadc91c4ef934cc62173244195c9171..eab00514088e689124b252f780948ed917c8028d 100644 (file)
@@ -13,6 +13,7 @@ Html({
                history phoenician latin sample test language multilingual
        '],
        stylesheet => [qw'light dark red'],
+       data => [qw'writing-phnx.inc.pl'],
 });
 
 :>
@@ -31,6 +32,9 @@ unless (exists $get{v}) {
        $glyphs->{digraph}--;
 }
 
+my $scriptname = do 'writing-script.inc.pl';
+$_ = qq{<a href="/latin">$_</a>} for $scriptname->{latn} || ();
+
 for (
        [phnx => 'Phoenician'],
        [brah => 'Brahmi'],
@@ -43,7 +47,10 @@ for (
                printf "<p>Table data not found: <em>%s</em>.</p>\n", $! || $@;
                next;
        }
-       $glyphs->print($title => [ map { @$_ } grep { ref $_ eq 'ARRAY' } @table ]);
+       $glyphs->print($title => [map {
+               ref $_ eq 'ARRAY' ? @$_ : map { ".>$_" }
+                       $scriptname->{$source.'_'.$_} || $scriptname->{$_} || $_
+       } @table]);
 }
 
 :></div>