Skip to content

Instantly share code, notes, and snippets.

@n0nick
Created August 13, 2011 14:28
Show Gist options
  • Save n0nick/1143904 to your computer and use it in GitHub Desktop.
Save n0nick/1143904 to your computer and use it in GitHub Desktop.
<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