Closed tobymarsden closed 2 years ago
This PR allows genera with hyphenated names that start with a 2-letter segment, e.g. Le-monniera to be parsed.
Le-monniera
Note that if both this and PR #204 get merged, after merging the PEG rule CapWordWithDash will need to end up as:
CapWordWithDash
CapWordWithDash <- (CapWord1 / TwoLetterGenusDashedSegment) Dash (UpperAfterDash / LowerAfterDash)
The PR has been updated to only support parsing genera starting with the following 2-letter segments before the dash:
De- Eu- Le- Ne-
Merged it manually
This PR allows genera with hyphenated names that start with a 2-letter segment, e.g.
Le-monniera
to be parsed.Note that if both this and PR #204 get merged, after merging the PEG rule
CapWordWithDash
will need to end up as: