script: horizontal layout
[sheet.git] / script.plp
1 <(common.inc.plp)><:
2
3 Html({
4         title => 'script inheritance cheat sheet',
5         version => 'v1.0',
6         description => [
7                 "Character comparison,",
8                 "tracking letters as they evolve from Phoenician to modern scripts.",
9                 "Good Unicode test sample.",
10         ],
11         keywords => [qw'
12                 script glyph unicode writing comparison character alphabet letter
13                 history phoenician latin sample test language multilingual
14         '],
15         stylesheet => [qw'light dark red'],
16 });
17
18 :>
19 <h1>Scripts</h1>
20
21 <p>Also see <a href="/charset">charsets</a>
22 and <a href="/unicode">common chars</a>.</p>
23
24 <div class="diinfo">
25
26 <:
27 use Shiar_Sheet::FormatChar;
28 my $glyphs = Shiar_Sheet::FormatChar->new;
29
30 print $glyphs->table([qw{
31         .>Latin      A > B  C G  D  > E  F  Y  VU W Z H  -  I J K L M N > X  O  P >  - Q  R > S  T
32         .>Old_Italic ๐Œ€ > ๐Œ  > ๐Œ‚  ๐Œƒ  > ๐Œ„  ๐Œ…  >  >  ๐Œ– ๐Œ† ๐Œ‡  ๐Œˆ  ๐Œ‰ ๐Œ ๐ŒŠ ๐Œ‹ ๐ŒŒ ๐Œ > ๐ŒŽ  ๐Œ  ๐Œ >  ๐Œ‘ ๐Œ’  ๐Œ“ > ๐Œ”  ๐Œ•
33         .>Cyrillic   ะ ะ‘ ะ’  > ะ“  ะ”  ะ• ะญ  >  -ัด >  ะฃ ะ— ะ˜  ัฒ  > ะ† ะš ะ› ะœ ะ ะฅ -ัฎ ะž  ะŸ ะฆ  ะง -า€ ะ  ะจ ะก  ะข
34         .>Gothic     ๐Œฐ > ๐Œฑ  > ๐Œฒ  ๐Œณ  > ๐Œด  ๐†  >  >  ๐… ๐Œถ ๐Œท  ๐Œธ  > ๐Œน ๐Œบ ๐Œป ๐Œผ ๐Œฝ > ๐‡  ๐Œฟ  ๐€ >  - -  ๐‚ > ๐ƒ  ๐„
35         .>Coptic     โฒ€ > โฒ‚  > โฒ„  โฒ†  > โฒˆ  >  >  >  โฒจ โฒŒ โฒŽ  โฒ  > โฒ’ โฒ” โฒ– โฒ˜ โฒš โฒฌ โฒœ  โฒž  โฒ  >  โฒŠ -  โฒข > โฒค  โฒฆ
36         .>Greek      ฮ‘ > ฮ’  > ฮ“  ฮ”  > ฮ•  -ฯœ >  >  ฮฅ ฮ– ฮ—  ฮ˜  ฮ™ ะˆ ฮš ฮ› ฮœ ฮ ฮง ฮž  ฮŸ  ฮ  > -ฯบ -ฯ˜ ฮก ฮฃ -ฯน ฮค
37         .>Phoenician ๐ค€ > ๐ค  > ๐ค‚  ๐คƒ  > ๐ค„  >  >  >  ๐ค… ๐ค† ๐ค‡  ๐คˆ  > ๐ค‰ ๐คŠ ๐ค‹ ๐คŒ ๐ค > ๐คŽ  ๐ค  ๐ค >  ๐ค‘ ๐ค’  ๐ค“ > ๐ค”  ๐ค•
38         .>Hebrew     ื > ื‘  > ื’  ื“  > ื”  >  >  ื•  ืฐ ื– ื—  ื˜  ื™ ืฒ ื› ืœ ืž ื  > ืก  ืข  ืค ืฆ  ืฅ ืง  ืจ > ืฉ  ืช
39         .>Arabic     ๏บ > ๏บ  > ๏บ  ุฏุฐ ู‡ ู€  >  >  >  ๏ปญ ๏บฏ ุญุฎ ุทุธ > ูŠ ๏ป™ ๏ป ๏ปก ๏ปฅ > ุณ  ุนุบ ๏ป‘ ุต  ุถ ๏ป•  ๏บญ > ุด  ุชุซ
40 }]);
41
42 :></div>
43