File tree Expand file tree Collapse file tree 2 files changed +21
-3
lines changed Expand file tree Collapse file tree 2 files changed +21
-3
lines changed Original file line number Diff line number Diff line change 1
- # This should be doing CSS2.1; hopefully CSS3 when that's ready (but that may be a while)
2
-
3
1
use v6 ;
4
2
3
+ = begin pod
4
+
5
+ = TITLE CSS2.1 Grammar
6
+
7
+ = AUTHOR David Warring
8
+
9
+ This should be doing CSS2.1; hopefully CSS3 when that's ready (but that may
10
+ be a while).
11
+
12
+ = end pod
13
+
5
14
grammar CSSGrammar {
6
15
# builtin: ident (we use cssident), alpha
7
16
Original file line number Diff line number Diff line change 1
1
use v6 ;
2
2
3
- # | Newick tree format. L<https://en.wikipedia.org/wiki/Newick_format>
3
+ = begin pod
4
+
5
+ = TITLE Newick tree format
6
+
7
+ = AUTHOR Lucien Grondin
8
+
9
+ See L < https://en.wikipedia.org/wiki/Newick_format > .
10
+
11
+ = end pod
12
+
4
13
grammar Newick {
5
14
rule TOP { '(' <subtree >** 2.. 3 % \, ');' }
6
15
rule subtree { <species > | '(' <subtree >** 2 % \, ')' }
You can’t perform that action at this time.
0 commit comments