digits: customise page intro and metadata
authorMischa POSLAWSKY <perl@shiar.org>
Sun, 16 Apr 2017 15:39:56 +0000 (17:39 +0200)
committerMischa POSLAWSKY <perl@shiar.org>
Thu, 25 May 2017 20:10:22 +0000 (22:10 +0200)
digits.plp

index b2b4e09f3a200935c0c9e242c86eec5ef952c65e..10625a5cda0e3cc07f5b5563f5f5b4291d342584 100644 (file)
@@ -4,24 +4,24 @@ Html({
        title => 'digit characters sheet',
        version => '1.0',
        description => [
-               "Character comparison,",
-               "tracking letters as they evolve from Phoenician to modern scripts.",
-               "Good Unicode test sample.",
+               "Unicode glyphs of numbers 0 to 10 in various scripts.",
        ],
-       keywords => [qw'
-               script glyph unicode writing comparison character alphabet letter
-               history phoenician latin sample test language multilingual
-       '],
-       stylesheet => [qw'light dark red'],
+       keywords => [qw(
+               numeral numerical digit number counting decimal
+               script glyph unicode writing comparison list character
+               history sample test language multilingual
+       )],
+       stylesheet => [qw( light dark circus mono red )],
        data => [qw'writing-digits.inc.pl'],
 });
 
 :>
-<h1>Writing systems</h1>
+<h1>Numerals</h1>
 
-<p>Also see comparison of <a href="/writing">writing systems</a>.</p>
+<p>Digits and numbers counting up to ten
+in various <a href="/writing">writing systems</a>.</p>
 
-<div class="section">
+<div>
 
 <:
 use Shiar_Sheet::FormatChar;
@@ -38,7 +38,7 @@ $_ = qq{<a href="/latin">$_</a>} for $scriptname->{latn} || ();
 my @table = do "writing-digits.inc.pl";
 die "Table data not found: $_\n" for $@ || $! || ();
 
-$glyphs->print([map {
+print $glyphs->table([map {
        ref $_ eq 'ARRAY' ? @{$_} : map { ".>$_" }
                $scriptname->{"digits_$_"} || $scriptname->{$_} || $_
 } @table]);