transliterate

Transliteration engine
git clone git://lumidify.org/transliterate.git (fast, but not encrypted)
git clone https://lumidify.org/transliterate.git (encrypted, but very slow)
git clone git://4kcetb7mo7hj6grozzybxtotsub5bempzo4lirzc3437amof2c2impyd.onion/transliterate.git (over tor)
Log | Files | Refs | README | LICENSE

config (331B)


      1 split "[ \n]+"
      2 beforeword " "
      3 afterword "[ \n]"
      4 comment "#"
      5 
      6 ignore "../data/ignore.txt"
      7 table words "../data/words.txt"
      8 table endings "../data/endings.txt"
      9 table overrides "../data/override.txt"
     10 
     11 expand words endings
     12 
     13 match "\d+" "num_replaced" beginword
     14 
     15 group beginword endword
     16 replace words
     17 replace overrides override
     18 endgroup