1 # © 2016 and later: Unicode, Inc. and others.
2 # License & terms of use: http://www.unicode.org/copyright.html#License
9 # Remove \0301 following Greek, with possible intervening 0308 marks.
10 # [[:Greek:] & [:Ll:]] [\u0308]? { \u0301 → ;
11 # Make any string of letters after a cased letter be lower, with rules for sigma
12 [:cased:] [:case-ignorable:]* { Σ } [:case-ignorable:]* [:cased:] → σ;
13 [:cased:] [:case-ignorable:]* { Σ → ς;
14 [:cased:] [:case-ignorable:]* { (.) → &Any-Lower($1) ;
15 # Otherwise all lowercase go to upper (titlecase stay as is)
16 ([:Lowercase:]) → &Any-Title($1) ;