This repository was archived by the owner on Nov 16, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +20
-4
lines changed Expand file tree Collapse file tree 3 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 1
1
= ABBREVIATIONS
2
- rm Rakudo (branch master)
3
- rn Rakudo (branch nom)
2
+ rm Rakudo/ master
3
+ rn Rakudo/ nom
4
4
n Niecza
5
5
6
6
= Basics
Original file line number Diff line number Diff line change @@ -85,7 +85,10 @@ sub write_html {
85
85
my @row = @$_ ;
86
86
$ht_row {feature } = shift @row ;
87
87
$ht_row {compilers } = [ map {
88
- { status => $status_map {$row [$_ ] // ' ' } }
88
+ {
89
+ status => $row [$_ ] // ' ' ,
90
+ class => $status_map {$row [$_ ] // ' ' },
91
+ }
89
92
} 0..($index - 1) ];
90
93
push @rows , \%ht_row ;
91
94
}
Original file line number Diff line number Diff line change 8
8
.implemented { background-color : green }
9
9
.partial { background-color : yellow }
10
10
.missing { background-color : red }
11
+ .implemented , .partial , .missing {
12
+ text-align : center
13
+ }
11
14
</ style >
12
15
13
16
</ head >
14
17
< body >
15
18
< h1 > Feature comparison of Perl 6 compilers</ h1 >
19
+
20
+ < h2 > Legend</ h2 >
21
+ < table >
22
+ < tr > < td class ="implemented "> +</ td > < td > implemented</ td > </ tr >
23
+ < tr > < td class ="partial "> +-</ td > < td > partially implemented</ td > </ tr >
24
+ < tr > < td class ="missing "> -</ td > < td > not yet implemented</ td > </ tr >
25
+ </ table >
26
+
27
+ < h2 > Features</ h2 >
16
28
< table >
17
29
< thead >
18
30
< tr >
@@ -30,7 +42,7 @@ <h1>Feature comparison of Perl 6 compilers</h1>
30
42
< %else%>
31
43
< td > < %var feature%> </ td >
32
44
< %loop compilers%>
33
- < td class ="<%var status %> ">
45
+ < td class ="<%var class %> ">
34
46
< %var status%>
35
47
</ td >
36
48
< %/loop%>
@@ -39,6 +51,7 @@ <h1>Feature comparison of Perl 6 compilers</h1>
39
51
< %/loop%>
40
52
</ tbody >
41
53
</ table >
54
+
42
55
</ body >
43
56
</ html >
44
57
You can’t perform that action at this time.
0 commit comments