• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# © 2016 and later: Unicode, Inc. and others.
2# License & terms of use: http://www.unicode.org/copyright.html#License
3#
4# File: el_Lower.txt
5# Generated from CLDR
6#
7
8# Special case for final form of sigma.
9::NFD();
10# C is preceded by a sequence consisting of a cased letter and then zero or more case-ignorable characters,
11# and C is not followed by a sequence consisting of zero or more case-ignorable characters and then a cased letter.
12# 03A3; 03C2; 03A3; 03A3; Final_Sigma; # GREEK CAPITAL LETTER SIGMA
13# With translit rules, easiest is to handle the negative condition first, mapping in that case to the regular sigma.
14Σ } [:case-ignorable:]* [:cased:] → σ;
15[:cased:] [:case-ignorable:]* { Σ → ς;
16::Any-Lower;
17::NFC();
18
19