Created
August 13, 2011 14:28
-
-
Save n0nick/1143904 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<rule comment="rule: prep artic numeral"> | |
<pattern> | |
<pattern-item n="prep"/> | |
<pattern-item n="artic"/> | |
<pattern-item n="numeral"/> | |
</pattern> | |
<action> | |
<choose> | |
<when> | |
<test> | |
<equal> | |
<clip pos="1" side="tl" part="lemh"/> | |
<lit v="ב"/> | |
</equal> | |
</test> | |
<out> | |
<lu> | |
<clip pos="1" side="tl" part="whole"/> | |
</lu> | |
<lu> | |
<clip pos="3" side="tl" part="whole"/> | |
</lu> | |
</out> | |
</when> | |
<otherwise> | |
<out> | |
<lu> | |
<clip pos="1" side="tl" part="whole"/> | |
</lu> | |
<b pos="1"/> | |
<lu> | |
<clip pos="2" side="tl" part="whole"/> | |
</lu> | |
<b pos="2"/> | |
<lu> | |
<clip pos="3" side="tl" part="whole"/> | |
</lu> | |
</out> | |
</otherwise> | |
</choose> | |
</action> | |
</rule> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment