-
Notifications
You must be signed in to change notification settings - Fork 791
Expand file tree
/
Copy pathOverview.src.html
More file actions
4271 lines (3670 loc) · 120 KB
/
Overview.src.html
File metadata and controls
4271 lines (3670 loc) · 120 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>CSS Lists Module Level 3</title>
<link rel="stylesheet" type="text/css" href="../default.css">
<style type="text/css">
td, th { padding: 0 0.5em; }
.numbering td, .numbering th { vertical-align: top; }
.mapping th { text-align: right; }
.mapping td { text-align: center; }
.roman-example { padding: 0.75em; background: white; color: black; margin: 0.25em 0; display: block; }
.hebrew { display: block; }
.hebrew-example thead { display: none; }
.hebrew-example tbody { display: table; float: left; margin: 1em 2em 0.5em; }
.hebrew-example tr > :first-child { text-align: right; }
.hebrew-example tr > :last-child { text-align: left; }
.hebrew-example + * { clear: both; }
</style>
<link rel="stylesheet" type="text/css" href="http://www.w3.org/StyleSheets/TR/W3C-ED">
</head>
<body>
<div class="head">
<!--logo-->
<h1>CSS Lists Module Level 3</h1>
<h2 class="no-num no-toc">[LONGSTATUS] [DATE]</h2>
<dl>
<dt>This version:
<dd><!-- <a href="http://www.w3.org/TR/[YEAR]/WD-[SHORTNAME]-[CDATE]">http://www.w3.org/TR/[YEAR]/WD-[SHORTNAME]-[CDATE]</a></dd> -->
<a href="http://dev.w3.org/csswg/css3-lists">http://dev.w3.org/csswg/css3-lists</a>
<dt>Latest version:
<dd><a
href="http://www.w3.org/TR/css3-background">[LATEST]</a>
<dt>Previous version:</dt>
<dd><a href="http://www.w3.org/TR/2002/WD-css3-lists-20021107">http://www.w3.org/TR/2002/WD-css3-lists-20021107</a></dd>
<dt>Editors:</dt> <!-- in the order tantek requested -->
<dd>Ian Hickson, <a href="mailto:ian@hixie.ch">ian@hixie.ch</a></dd>
<dd><span lang="tr">Tantek Çelı̇k</span>, Microsoft Corporation, <a href="mailto:tantekc@microsoft.com">tantekc@microsoft.com</a></dd>
<dt>Contributors:</dt> <!-- in order of volume of input -->
<dd>Simon Montagu, AOL-TW/Netscape, <a href="mailto:smontagu@netscape.com">smontagu@netscape.com</a></dd>
<dd>Daniel Yacob, <a href="mailto:yacob@geez.org">yacob@geez.org</a></dd>
<dd>Christopher Hoess, <a href="mailto:choess@stwing.upenn.edu">choess@stwing.upenn.edu</a></dd>
<dd>Daniel Glazman, AOL-TW/Netscape, <a href="mailto:glazman@netscape.com">glazman@netscape.com</a></dd>
</dl>
<!--copyright-->
<hr title="Separator for header">
</div>
<h2 class="no-num no-toc" id="abstract">Abstract</h2>
<p>CSS is a language for describing the rendering of structured documents
(such as HTML and XML) on screen, on paper, in speech, etc.
This draft contains the features of CSS level 3 relating to
list styling. It includes and extends the functionality of
CSS level 2 [[!CSS21]], which builds on CSS level 1
[[CSS1]]. The main extensions compared to level 2 are
<span class="issue">summarize here</span>.
<h2 class="no-num no-toc" id="status">Status of this document</h2>
<p><strong>This document has been unowned since 7 November 2002.</strong></p>
<!--status-->
<h2 class="no-num no-toc" id="contents">Table of contents</h2>
<!--toc-->
<hr>
<h2>Introduction</h2>
<p>The list model in this module differs in some important ways from the list model in CSS2,
specifically in its handling of markers. Implementation experience suggested the CSS2 model
overloaded the ::before and ::after pseudo-elements with too much behavior, while at the same time
introducing new properties when existing properties were sufficient.</p>
<p>Most block-level elements in CSS generate one principal block box. In this module, we discuss two
CSS mechanisms that cause an element to have an associated marker: one method associates one
principal block box (for the element's content) with a separate marker box (for decoration such as a
bullet, image, or number), and the other inserts a marker box into the principal box. Unlike :before
and :after content, the marker box cannot affect the position of the principal box, whatever the
positioning scheme.</p>
<div class="html-example">
<p>For instance, the following example illustrates how markers may be used to add parentheses around
each numbered list item. This HTML application and style sheet:</p>
<pre>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<HTML>
<HEAD>
<TITLE>Creating a list with markers</TITLE>
<STYLE type="text/css">
LI::marker { content: "(" counter(list-item, lower-roman) ")"; }
LI { display: list-item; }
</STYLE>
</HEAD>
<BODY>
<OL>
<LI> This is the first item. </LI>
<LI> This is the second item. </LI>
<LI> This is the third item. </LI>
</OL>
</BODY>
</HTML>
</pre>
<p>should produce something like this: </p>
<pre>
(i) This is the first item.
(ii) This is the second item.
(iii) This is the third item.
</pre>
</div>
<p>With descendant selectors and child selectors, it's possible to specify different marker types
depending on the depth of embedded lists.</p>
<p class="issue">A future release of this module will probably include ways to render tree
lists.</p>
<h2>Declaring a List Item</h2>
<p>To declare a list item, the <span class="property">'display'</span>
property should be set to 'list-item'. This, in addition to generating
a <span class="css">::marker</span> pseudo-element and enabling the
properties described below for that element, causes that element to
increment the list item counter <span class="css">list-item</span>.
(This does not affect the specified or computed values of the counter
properties.)</p>
<p>The <span class="css">list-item</span> counter is a real counter,
and can be directly affected using the <span
class="property">'counter-increment'</span> and <span
class="property">'counter-reset'</span> properties. It can also be
used in the counter() and counters() function forms.</p>
<p class="issue">The CSS3 box module may define other <span
class="property">'display'</span> values which generate a list
marker. These should also affect the 'list-item' counter.</p>
<p>Note that this new model makes the <span class="css">marker</span>
display type redundant. That display type is therefore obsolete in the
CSS3 Lists model.</p>
<h2>List Content: The <span class="property">'list-style-type'</span> property</h2>
<table class="propdef">
<tbody>
<tr><td><em>Name:</em><td><dfn>list-style-type</dfn>
<tr>
<td><em>Value:</em></td>
<td><span><glyph></span> | <span><algorithmic></span> |
<span><numeric></span> | <span><alphabetic></span> |
<span><symbolic></span> | <span><non-repeating></span> |
normal | none</td>
</tr>
<tr>
<td><em>Initial:</em></td>
<td>disc</td>
</tr>
<tr>
<td><em>Applies�to:</em></td>
<td>all elements with 'display: list-item'</td>
</tr>
<tr>
<td><em>Inherited:</em></td>
<td>yes</td>
</tr>
<tr>
<td><em>Percentages:</em></td>
<td>N/A</td>
</tr>
<tr>
<td><em>Media:</em></td>
<td>visual</td>
</tr>
<tr>
<td><em>Computed value:</em></td>
<td>specified value</td>
</tr>
<tr>
<td><em>Depends on:</em></td>
<td>none</td>
</tr>
</tbody>
</table>
<p>This property specifies the default appearance of the list item
marker if <span class="property">'list-style-image'</span> has the
value 'none' or if the image pointed to by the URI cannot be
displayed. The value 'none' specifies no marker, otherwise there are
six types of marker: glyphs, algorithmic systems, numeric systems,
alphabetic systems, symbolic systems, and non-repeating systems. </p>
<p>Glyphs are single characters, whereas algorithmic, numeric,
alphabetic, symbolic and non-repeating systems are designed so that
each item in that style gets a deterministicly different marker. This
makes lists easier to navigate.</p>
<p>Most numbering systems have a suffix defined. It is used when
generating the default content for the marker.</p>
<dl>
<dt><dfn>normal</dfn></dt>
<dd>
Causes the list-style-type of the counter to be used, as declared by the appropriate <span
class="css">@counter</span> rule. In the context of an <span
class="css">@counter</span> rule, equivalent to <span>decimal</span>.
</dd>
</dl>
<p>Other values are defined in the following sections. User agents should follow these algorithms
unless a more normative source is found.</p>
<h3>Glyphs</h3>
<p>All markers with the same glyph style should use the same glyph. To
obtain other glyphs, authors should use the <span
class="property">'content'</span> property of the <span
class="css">::marker</span> pseudo-element.</p>
<!-- Their exact rendering depends on the user agent. -->
<dl>
<dt><dfn><glyph></dfn></dt>
<dd>
box |
check |
circle |
diamond |
disc |
hyphen |
square
</dd>
<!-- these definitions are stupid. circle and square should both have the same fill type, disc and
box should have the opposite fill type. I hate having to be backwards compatible. -->
<dt><dfn>box</dfn></dt>
<dd>A hollow square. (like □ U+25A1 WHITE SQUARE, ◻ U+25FB WHITE MEDIUM SQUARE, or ◽ U+25FD WHITE MEDIUM SMALL SQUARE)</dd> <!-- in MacIE (?) -->
<dt><dfn>check</dfn></dt>
<dd>A check mark. On interactive media, it is suggested that the same glyph which is used on the
platform to render a checked menu item be used for 'check'. (like ✓ U+2713 CHECK MARK)</dd>
<!-- UI module -->
<dt><dfn>circle</dfn></dt>
<dd>A hollow circle. (like ◦ U+25E6 WHITE BULLET)</dd> <!-- in Mozilla, WinIE, Opera, HTML4 -->
<dt><dfn>diamond</dfn></dt>
<dd>A filled diamond. On interactive media, it is suggested that the same glyph which is used on
the platform next to a selected menu item be used for 'diamond'. On some platforms, this is similar
to 'disc'. (like ◆ U+25C6 BLACK DIAMOND or ♦ U+2666 BLACK DIAMOND SUIT)</dd> <!-- UI
module -->
<dt><dfn>disc</dfn></dt>
<dd>A filled circle. (like • U+2022 BULLET)</dd> <!-- in Mozilla, WinIE, Opera, HTML4 -->
<dt><dfn>hyphen</dfn></dt>
<dd>A hyphen bullet. (like ⁃ U+2043 HYPHEN BULLET or – U+2013 EN DASH)</dd>
<dt><dfn>square</dfn></dt>
<dd>A filled square. (like ■ U+25A0 BLACK SQUARE, ◼ U+25FC BLACK MEDIUM SQUARE, or ◾ U+25FE BLACK MEDIUM SMALL SQUARE)</dd> <!-- in Mozilla, WinIE. A hollow square in Opera, HTML4. -->
<!-- ‣ U+2023 TRIANGULAR BULLET
⁌ U+204C BLACK LEFTWARDS BULLET
⁍ U+204D BLACK RIGHTWARDS BULLET -->
</dl>
<div class="issue">
<p>The definitions above may be removed and made UA-dependent if it is found that
there are discrepancies in the existing implementations.</p>
<p>We could add more values, there are certainly plenty to choose from
in UNICODE. How about a star? Or a triangle? Note that the stylesheet
of this document uses triangular bullets for notes, and yet that can
only be described using a pseudo-element, content property, and
unicode escape. Is that too much effort for a simple triangle?</p>
<p>A future level of CSS may provide a way to specify different bullet types at
arbitrary nesting levels. The Working Group considered adding an <span class="css">auto</span> value
with the following definition, but decided not to include it in this release: "The <dfn>auto</dfn>
value is intended to cause the UA to use a list numbering style different from that of the nearest
ancestor <span class="css">list-item</span> element. The exact rendering depends on the user
agent."</p>
</div>
<p>Glyphs have no suffix.</p>
<h3>Algorithmic</h3>
<p>Algorithmic systems are the most complicated and are described first. For these algorithms, it is
assumed that the rendering engine will apply the bidirectionality algorithm <em>after</em>
generating the numeric strings.</p>
<p class="note">Note: Readers not accustomed to reading bidirectional text should pay close
attention to the directionality of characters versus their associated UNICODE codepoints. All
codepoints are given in logical order, but example strings in this document should be rendered
in correct reading order.</p>
<dl>
<dt><dfn><algorithmic></dfn></dt>
<dd>
armenian |
cjk-ideographic |
ethiopic-numeric |
georgian |
hebrew |
japanese-formal |
japanese-informal |
<!-- korean -->
<!-- korean-check | -->
<!-- korean-hangul | -->
lower-armenian |
lower-roman |
simp-chinese-formal |
simp-chinese-informal |
syriac |
tamil |
trad-chinese-formal |
trad-chinese-informal |
upper-armenian |
upper-roman
</dd>
<dt><dfn>lower-armenian</dfn></dt>
<dd>This is a simple additive system defined for the range 1 to
9999. <!-- The digits are split into two groups of four (if there are
less than eight digits, the least significant group is filled first).
Within each group, --> The appropriate digits are picked from the following
list (at most one per column) and written in descending order by value
(thousands first). <!-- Any characters in the most significant group are
then combined with a macron accent, ◌̄ U+0304.
25CC is a dotted circle -->
<table>
<caption>Lower-armenian numbering system</caption>
<thead>
<tr>
<th colspan="3">Thousands</th>
<th colspan="3">Hundreds</th>
<th colspan="3">Tens</th>
<th colspan="3">Units</th>
</tr>
<tr>
<th>Values</th>
<th colspan="2">Codepoints</th>
<th>Values</th>
<th colspan="2">Codepoints</th>
<th>Values</th>
<th colspan="2">Codepoints</th>
<th>Values</th>
<th colspan="2">Codepoints</th>
</tr>
</thead>
<tbody>
<tr>
<td>1000</td>
<td>ռ</td>
<td>U+057C</td>
<td>100</td>
<td>ճ</td>
<td>U+0573</td>
<td>10</td>
<td>ժ</td>
<td>U+056A</td>
<td>1</td>
<td>ա</td>
<td>U+0561</td>
</tr>
<tr>
<td>2000</td>
<td>ս</td>
<td>U+057D</td>
<td>200</td>
<td>մ</td>
<td>U+0574</td>
<td>20</td>
<td>ի</td>
<td>U+056B</td>
<td>2</td>
<td>բ</td>
<td>U+0562</td>
</tr>
<tr>
<td>3000</td>
<td>վ</td>
<td>U+057E</td>
<td>300</td>
<td>յ</td>
<td>U+0575</td>
<td>30</td>
<td>լ</td>
<td>U+056C</td>
<td>3</td>
<td>գ</td>
<td>U+0563</td>
</tr>
<tr>
<td>4000</td>
<td>տ</td>
<td>U+057F</td>
<td>400</td>
<td>ն</td>
<td>U+0576</td>
<td>40</td>
<td>խ</td>
<td>U+056D</td>
<td>4</td>
<td>դ</td>
<td>U+0564</td>
</tr>
<tr>
<td>5000</td>
<td>ր</td>
<td>U+0580</td>
<td>500</td>
<td>շ</td>
<td>U+0577</td>
<td>50</td>
<td>ծ</td>
<td>U+056E</td>
<td>5</td>
<td>ե</td>
<td>U+0565</td>
</tr>
<tr>
<td>6000</td>
<td>ց</td>
<td>U+0581</td>
<td>600</td>
<td>ո</td>
<td>U+0578</td>
<td>60</td>
<td>կ</td>
<td>U+056F</td>
<td>6</td>
<td>զ</td>
<td>U+0566</td>
</tr>
<tr>
<td>7000</td>
<td>ւ</td>
<td>U+0582</td>
<td>700</td>
<td>չ</td>
<td>U+0579</td>
<td>70</td>
<td>հ</td>
<td>U+0570</td>
<td>7</td>
<td>է</td>
<td>U+0567</td>
</tr>
<tr>
<td>8000</td>
<td>փ</td>
<td>U+0583</td>
<td>800</td>
<td>պ</td>
<td>U+057A</td>
<td>80</td>
<td>ձ</td>
<td>U+0571</td>
<td>8</td>
<td>ը</td>
<td>U+0568</td>
</tr>
<tr>
<td>9000</td>
<td>ք</td>
<td>U+0584</td>
<td>900</td>
<td>ջ</td>
<td>U+057B</td>
<td>90</td>
<td>ղ</td>
<td>U+0572</td>
<td>9</td>
<td>թ</td>
<td>U+0569</td>
</tr>
</tbody>
</table>
<!--
<p class="issue">There are two letters for 10,000 and 20,000 (U+0555
and U+0556 respectively), but whether and how they should be used is
unclear.</p>
Some clarification: http://lists.w3.org/Archives/Public/www-style/2009Feb/0348.html
-->
<p>The suffix for the armenian numbering system is a dot (. U+002E FULL STOP).</p>
<p>Numbers outside the range of the armenian system are rendered using the decimal numbering style.</p>
<div class="example">
<p>Decimal 2951 in lower-armenian is սջծա U+057D U+057B U+056E U+0561.</p>
</div>
</dd>
<dt><dfn>cjk-ideographic</dfn></dt>
<dd>The cjk-ideographic algorithm is used by several numbering systems, using different sets of
digits. These systems are defined for numbers greater than or equal to 0 and less than
10<sup>16</sup>. Numbers less than zero or equal to or greater than 10<sup>16</sup> should use the
decimal system. The core algorithm is as follows:
<ol>
<li>Split the decimal number into groups of four digits, starting with the least significant
digit.</li>
<li>Ignoring groups that have the value zero, append the second group marker to the second group,
the third group marker to the third group, and the fourth group marker to the fourth group. These
markers are defined in the tables for the specific numbering systems. The first group has no
marker.</li>
<li>For each group, ignoring digits that have the value zero, append the second digit marker to
the second digit, the third digit marker to the third digit, and the fourth digit marker to the
fourth digit. These markers are defined in the tables for the specific numbering systems. The
first digit has no marker.</li>
<li>For any group with a value less than 20, remove the second digit (the 1 in the tens
column). Leave any associated markers.</li>
<li>Concatenate the groups back into a single string, least significant group last.</li>
<li>Collapse any consecutive runs of 0 digits to a single 0.</li>
<li>Replace each digit with the relevant character selected from the numbering system's
table.</li>
</ol>
<p>The suffix for the cjk-ideographic numbering systems is a dot (. U+002E FULL STOP). <span
class="issue">Is there a better suffix to use?</span></p>
<p>If specified explicitly, the cjk-ideograph keyword should be handled like
trad-chinese-informal.</p>
</dd>
<dt><dfn>ethiopic-numeric</dfn></dt>
<dd>The following algorithm converts decimal digits to ethiopic numbers.
<ol>
<li>Split the number into groups of two digits, starting with the least significant decimal digit.</li>
<li>Number each group sequentially, starting from the least significant as group number zero.</li>
<li>If the group has an odd number (as given in the previous step) and has the value 1, or
if the group is the most significant one and has the value 1, or
if the group has the value zero, then remove the digit
(but leave the group, so it still has a separator appended below).</li>
<li>For each remaining digit, substitute the relevant ethiopic character from the list below.
<table>
<caption>Ethiopic numbering system</caption>
<thead>
<tr>
<th colspan="3">Tens</th>
<th colspan="3">Units</th>
</tr>
<tr>
<th>Values</th>
<th colspan="2">Codepoints</th>
<th>Values</th>
<th colspan="2">Codepoints</th>
</tr>
</thead>
<tbody>
<tr>
<td>10</td>
<td>፲</td>
<td>U+1372</td>
<td>1</td>
<td>፩</td>
<td>U+1369</td>
</tr>
<tr>
<td>20</td>
<td>፳</td>
<td>U+1373</td>
<td>2</td>
<td>፪</td>
<td>U+136A</td>
</tr>
<tr>
<td>30</td>
<td>፴</td>
<td>U+1374</td>
<td>3</td>
<td>፫</td>
<td>U+136B</td>
</tr>
<tr>
<td>40</td>
<td>፵</td>
<td>U+1375</td>
<td>4</td>
<td>፬</td>
<td>U+136C</td>
</tr>
<tr>
<td>50</td>
<td>፶</td>
<td>U+1376</td>
<td>5</td>
<td>፭</td>
<td>U+136D</td>
</tr>
<tr>
<td>60</td>
<td>፷</td>
<td>U+1377</td>
<td>6</td>
<td>፮</td>
<td>U+136E</td>
</tr>
<tr>
<td>70</td>
<td>፸</td>
<td>U+1378</td>
<td>7</td>
<td>፯</td>
<td>U+136F</td>
</tr>
<tr>
<td>80</td>
<td>፹</td>
<td>U+1379</td>
<td>8</td>
<td>፰</td>
<td>U+1370</td>
</tr>
<tr>
<td>90</td>
<td>፺</td>
<td>U+137A</td>
<td>9</td>
<td>፱</td>
<td>U+1371</td>
</tr>
</tbody>
</table>
</li>
<li>For each group with an odd number (as given in the second step), append ፻ U+137B.</li>
<li>For each group with an even number (as given in the second step), except the group with number 0, append ፼ U+137C.</li>
<li>Concatenate the groups into one string.</li>
</ol>
<p>This system is defined for all numbers greater than zero. For zero and negative numbers, the
decimal system is used instead.</p>
<p>The suffix for the ethiopic-numeric numbering systems is a dot (. U+002E FULL STOP). <span
class="issue">Is there a better suffix to use? <strong>The alphabetic ethiopic systems use a
different suffix.</strong></span></p>
<div class="example">
<p>
The decimal number 100, in ethiopic, is
፻
U+137B <!-- odd -->
</p>
<p>
The decimal number 78010092, in ethiopic, is
፸፰፻፩፼፻፺፪
U+1378 U+1370 U+137B <!-- 70 8 odd -->
U+1369 U+137C <!-- 1 even -->
U+137B <!-- odd -->
U+137A U+136A. <!-- 90 2 -->
</p>
<p>
The decimal number 780000001092, in ethiopic, is
፸፰፻፩፼፻፼፻፺፪
U+1378 U+1370 U+137B <!-- 70 8 odd -->
U+1369 U+137C <!-- 1 even -->
U+137B <!-- odd -->
U+137C <!-- even -->
U+137B <!-- odd -->
U+137A U+136A. <!-- 90 2 -->
</p>
</div>
</dd>
<dt><dfn>georgian</dfn></dt>
<dd>This is a simple additive system (like armenian) defined only for the range 1 to 19999. The
appropriate digits are picked from the following list (at most one per column) and written in
descending order by value (tens of thousands first).
<table>
<caption>Georgian numbering system</caption>
<tr>
<th colspan="3">Tens of Thousands</th>
<th colspan="3">Thousands</th>
<th colspan="3">Hundreds</th>
<th colspan="3">Tens</th>
<th colspan="3">Units</th>
</tr>
<tr>
<th>Values</th>
<th colspan="2">Codepoints</th>
<th>Values</th>
<th colspan="2">Codepoints</th>
<th>Values</th>
<th colspan="2">Codepoints</th>
<th>Values</th>
<th colspan="2">Codepoints</th>
<th>Values</th>
<th colspan="2">Codepoints</th>
</tr>
<tr>
<td>10000</td>
<td>ჵ</td>
<td>U+10F5</td>
<td>1000</td>
<td>ჩ</td>
<td>U+10E9</td>
<td>100</td>
<td>რ</td>
<td>U+10E0</td>
<td>10</td>
<td>ი</td>
<td>U+10D8</td>
<td>1</td>
<td>ა</td>
<td>U+10D0</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td>2000</td>
<td>ც</td>
<td>U+10EA</td>
<td>200</td>
<td>ს</td>
<td>U+10E1</td>
<td>20</td>
<td>კ</td>
<td>U+10D9</td>
<td>2</td>
<td>ბ</td>
<td>U+10D1</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td>3000</td>
<td>ძ</td>
<td>U+10EB</td>
<td>300</td>
<td>ტ</td>
<td>U+10E2</td>
<td>30</td>
<td>ლ</td>
<td>U+10DA</td>
<td>3</td>
<td>გ</td>
<td>U+10D2</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td>4000</td>
<td>წ</td>
<td>U+10EC</td>
<td>400</td>
<td>ჳ (��)</td>
<td>U+10F3 (U+10E3)</td>
<td>40</td>
<td>მ</td>
<td>U+10DB</td>
<td>4</td>
<td>დ</td>
<td>U+10D3</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td>5000</td>
<td>ჭ</td>
<td>U+10ED</td>
<td>500</td>
<td>ფ</td>
<td>U+10E4</td>
<td>50</td>
<td>ნ</td>
<td>U+10DC</td>
<td>5</td>
<td>ე</td>
<td>U+10D4</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td>6000</td>
<td>ხ</td>
<td>U+10EE</td>
<td>600</td>
<td>ქ</td>
<td>U+10E5</td>
<td>60</td>
<td>ჲ</td>
<td>U+10F2</td>
<td>6</td>
<td>ვ</td>
<td>U+10D5</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td>7000</td>
<td>ჴ</td>
<td>U+10F4</td>
<td>700</td>
<td>ღ</td>
<td>U+10E6</td>
<td>70</td>
<td>ო</td>
<td>U+10DD</td>
<td>7</td>
<td>ზ</td>
<td>U+10D6</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td>8000</td>
<td>ჯ</td>
<td>U+10EF</td>
<td>800</td>
<td>ყ</td>
<td>U+10E7</td>
<td>80</td>
<td>პ</td>
<td>U+10DE</td>
<td>8</td>
<td>ჱ</td>
<td>U+10F1</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td>9000</td>
<td>ჰ</td>
<td>U+10F0</td>
<td>900</td>
<td>შ</td>
<td>U+10E8</td>
<td>90</td>
<td>ჟ</td>
<td>U+10DF</td>
<td>9</td>
<td>თ</td>
<td>U+10D7</td>
</tr>
</table>
<p>Note that these codepoints are not all sequential.</p>
<p>The suffix for the georgian numbering system is a dot (. U+002E FULL STOP).</p>
<p>Numbers outside the range of the georgian system are rendered using the decimal numbering style.</p>
</dd>
<dt id="hebrew"><dfn>hebrew</dfn></dt>
<dd><p>This is a simple additive system defined for the range 1 to 999999. The
digits are split into two groups of three. Within each group, appropriate
digits are picked from the following list (at most one per column) and written
in descending order by value (hundreds first). If there is more than one
group, the first group is followed by HEBREW PUNCTUATION GERESH U+05F3.</p>
<table>
<caption>Hebrew numbering system</caption>
<thead>
<tr>
<th colspan="3">Hundreds</th>
<th colspan="3">Tens</th>
<th colspan="3">Units</th>
</tr>
<tr>
<th>Values</th>
<th colspan="2">Codepoints</th>
<th>Values</th>
<th colspan="2">Codepoints</th>
<th>Values</th>
<th colspan="2">Codepoints</th>
</tr>
</thead>
<tbody>
<tr>
<td>100</td>
<td>ק</td>
<td>U+05E7</td>
<td>10</td>
<td>י</td>
<td>U+05D9</td>
<td>1</td>
<td>א</td>
<td>U+05D0</td>
</tr>
<tr>
<td>200</td>
<td>ר</td>
<td>U+05E8</td>
<td>20</td>
<td>כ</td>
<td>U+05DB</td>
<td>2</td>
<td>ב</td>
<td>U+05D1</td>
</tr>
<tr>
<td>300</td>
<td>ש</td>
<td>U+05E9</td>