nethack: subargument updates
[sheet.git] / digraphs.plp
index 02fcbc55505615a28e23ca008142b1638ecc544b..84b063e519f3431f5f09e4113a15de09c3313735 100644 (file)
@@ -2,6 +2,7 @@
 use utf8;
 use strict;
 use warnings;
+no  warnings 'qw';  # to quote or not to quote, that is the question
 use open IO => ':utf8';
 
 our $VERSION = '1.0';
@@ -16,6 +17,7 @@ $header{content_type} = 'text/html; charset=utf-8';
 <title>digraph cheat sheet</title>
 <meta http-equiv="content-type" content="utf-8">
 <link rel="stylesheet" type="text/css" media="all" href="digraphs.css">
+<link rel="vcs" type="git" href="git://dev.shiar.nl/sheet">
 </head>
 
 <body>
@@ -24,6 +26,9 @@ $header{content_type} = 'text/html; charset=utf-8';
 <p>i^k in <a href="/">Vim</a>.
 Also see <a href="/unicode">common digraphs</a>.</p>
 
+<p style="font-size:72%">Unofficial <span class="Xz">proposals</span>
+are available as <a href="/digraphs.vim">ex commands</a>.</p>
+
 <:
 my $di = do 'digraphs.inc.pl';
 
@@ -41,13 +46,13 @@ my @chars = (
        ['A'..'M'], ['N'..'Z'],
        ['a'..'m'], ['n'..'z'],
 );
-my @chars2 = (@chars, ['_']);  # trailing character (extended set)
+my @chars2 = (['_'], @chars);  # trailing character (extended set)
 
-print '<table><col>';
+print '<table class="glyphs dimap"><col>';
 print qq'<colgroup span="$_">' for map {scalar @$_} @chars2;
 print "</colgroup><col>\n";
 for my $section (qw{thead tfoot}) {
-       print "<$section><tr><th>&nbsp;";
+       print "<$section><tr><th>";
        print '<th>', quote($_) for map {@$_} @chars2;
        print "<th>&nbsp;\n";
 }
@@ -84,7 +89,7 @@ for my $c1group (@chars) {
 print "</table>\n";
 :>
 <div id="legend">
-       <table><tr>
+       <table class="glyphs"><tr>
        <td class="X Cc">control
        <td class="X Zs"><span>spacing</span>
        <td class="X Mn">modifier
@@ -105,18 +110,17 @@ print "</table>\n";
        <td class="X Bopomofo">chinese
        </table>
 
-       <table><tr>
+       <table class="glyphs"><tr>
        <td class="X">unicode
        <td class="X Xl">latin1
        <td class="X Xa">ascii
-       <td class="X Co">private
        <td class="X Xz">proposed
        </table>
 </div>
 
 <p id="footer">
-       <a href="http://vi.shiar.net/digraphs">vi.<strong>shiar.net</strong>/digraphs</a>
-       <a href="git://dev.shiar.net/vi-cheat"><:= "v$VERSION" :></a>
+       <a href="http://sheet.shiar.nl/digraphs">sheet.shiar.nl<strong>/digraphs</strong></a>
+       <a href="git://dev.shiar.nl/sheet"><:= "v$VERSION" :></a>
        created by Shiar •
        <a title="Licensed under the GNU Affero General Public License, version 3"
           href="http://www.fsf.org/licensing/licenses/agpl-3.0.html">AGPLv3</a> •