10.0.1 • Published 2 years ago

mdict-js v10.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

mdict-js

this is forked form js-mdict. Very Thanks to terasum

Changes

v10

  • if ext of file is mdx, the keys will be cached in memory.

v1(deprecated)

  • add mixed mode. 'stripkey' and 'keyCaseSensitive' will be ignored in this mode (only lookup function and mdx file), lookup will return an array contains all words matched (stripKey and lowercase). this mode will take some time to boot.

    const Mdict = require('mdict-js')
    const dict = new Mdict('path/xxx.mdx', {
      mode: 'mixed'
    })
    
    const res = dict.lookup('be')
    console.log(res)
    /**
    [
      { keyText: 'be', definition: 'xxx' },
      { keyText: 'Be', definition: 'xxx' },
      { keyText: 'be-', definition: 'xxx' }
    ]
    **/