Overview
| Comment: | [njs] Export noew function getIgnoreRules | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | nodejs | 
| Files: | files | file ages | folders | 
| SHA3-256: | ba941ad2d4cd8b21e9571cb846ea76b8 | 
| User & Date: | IllusionPerdu on 2018-10-21 15:16:13 | 
| Other Links: | branch diff | manifest | tags | 
Context
| 2018-10-21 | ||
| 17:31 | [njs] Cli update doc with new command check-in: c4df2bb8f2 user: IllusionPerdu tags: nodejs | |
| 15:16 | [njs] Export noew function getIgnoreRules check-in: ba941ad2d4 user: IllusionPerdu tags: nodejs | |
| 15:04 | [njs] Add *ignoreRule(s) check-in: ec3136d1bc user: IllusionPerdu tags: nodejs | |
Changes
Modified gc_core/js/lang_core/gc_engine.js from [3a1daff577] to [8734a07c32].
| ︙ | |||
| 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 | 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 | + | 
    exports.getSpellChecker = gc_engine.getSpellChecker;
    // sentence
    exports._zEndOfSentence = gc_engine._zEndOfSentence;
    exports._zBeginOfParagraph = gc_engine._zBeginOfParagraph;
    exports._zEndOfParagraph = gc_engine._zEndOfParagraph;
    exports.getSentenceBoundaries = gc_engine.getSentenceBoundaries;
    // rules
    exports.getIgnoreRules = gc_engine.getIgnoreRules;
    exports.ignoreRule = gc_engine.ignoreRule;
    exports.resetIgnoreRules = gc_engine.resetIgnoreRules;
    exports.reactivateRule = gc_engine.reactivateRule;
    exports.listRules = gc_engine.listRules;
    exports.getRules = gc_engine.getRules;
    // options
    exports.setOption = gc_engine.setOption;
 | 
| ︙ |