%% This OTP, part of the Makor2 package, takes care of some oddments:
%%
%%   * Using the circumflex to add the superscript dot to shin/sin;
%%
%%   * double-quote convention

input:
       1;
output:
       1;
aliases:
       CIRCUM  = 94
               ;
       USCORE  = 95
               ;
       FINAL   = (107|110|112|116|118)
               ;
       ALPHA   = 65-90
               ;
       alpha   = 97-122
               ;
       CON     = ({ALPHA}|{alpha}|85|176-181|192-199)
               ;
expressions:
%% Shin/sin dots...
       {CIRCUM} 121    => 177 % sin
               ;
       121 {CIRCUM}    => 176 % shin
               ;
%% Double-quotes.
       {CON} 39 39     => \1 74 96 % cons-sheva-alef
               ;
       39 39           => 34 % dbl quotes
               ;