# Rule format: #^leftcontext|morpheme$->replacement; # # denotes a comment # ^ denotes NOT # | denotes end of left context # $ denotes end of word # -> denotes transformation # ; denotes end of rule # All rule parts are optional except -> and ;. # Rules are tried top-down, one rule per step is applied. # Each step below _must_ be separated exacly as below, i.e. # with ### steplabel ###, where steplabel is (Step1-3). # Lastly, the rule file must end with ### END ### ### Step1 ### s$->; ### Step2 ### er$->; ### Step3 ### tt$->t; ic$->; ### END ###