You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Many useful LanguageTool rules are written in Java and not in the XML rule format (e.g. the A-Vs-AN rule which is kind of essential for me, because I always forget to write this correctly).
It would be great if nlprule would allow to rewrite these rules in Rust.
The text was updated successfully, but these errors were encountered:
This is a good point. I am not willing to port and maintain Java Rules myself at the moment, but it would be good to have this possibility.
This will actually be solved to some degree by modularization (#72), which will split nlprule into individual components (each implementing one of the traits Tokenize (text -> tokens), Transform (tokens -> tokens (e.g. chunker)) or Suggest (tokens -> suggestions)).
I'll make sure that the traits are public so that another crate could implement e.g. an nlprule Suggester with ported Java Rules from LT.
I unfortunately can't give an ETA on modularization since I'm quite busy right now, but it will be soon-ish.
Many useful LanguageTool rules are written in Java and not in the XML rule format (e.g. the A-Vs-AN rule which is kind of essential for me, because I always forget to write this correctly).
It would be great if nlprule would allow to rewrite these rules in Rust.
The text was updated successfully, but these errors were encountered: