emacs/dictionaries/mk
KemoNine eccc6b825f overhaul support files ; add compile of all elisp on startup for code/org profiles 2022-06-02 14:33:30 -04:00
..
index.aff overhaul support files ; add compile of all elisp on startup for code/org profiles 2022-06-02 14:33:30 -04:00
index.d.ts overhaul support files ; add compile of all elisp on startup for code/org profiles 2022-06-02 14:33:30 -04:00
index.dic overhaul support files ; add compile of all elisp on startup for code/org profiles 2022-06-02 14:33:30 -04:00
index.js overhaul support files ; add compile of all elisp on startup for code/org profiles 2022-06-02 14:33:30 -04:00
license overhaul support files ; add compile of all elisp on startup for code/org profiles 2022-06-02 14:33:30 -04:00
package.json overhaul support files ; add compile of all elisp on startup for code/org profiles 2022-06-02 14:33:30 -04:00
readme.md overhaul support files ; add compile of all elisp on startup for code/org profiles 2022-06-02 14:33:30 -04:00

readme.md

dictionary-mk

Macedonian spelling dictionary in UTF-8.

Useful with hunspell, nodehun, nspell, Open Office, LibreOffice, FireFox and Thunderbird, or macOS.

Generated by dictionaries, from dimztimz/hunspell-mk.

Installation

npm:

npm install dictionary-mk

Usage

var mk = require('dictionary-mk');

mk(function (err, result) {
  console.log(err || result);
});

Yields:

{ dic: <Buffer>,
  aff: <Buffer> }

Where dic is a buffer for the dictionary file at index.dic (in UTF-8), and aff is a buffer for the affix file at index.aff (in UTF-8).

Or directly load the files, using something like:

var path = require('path');
var base = require.resolve('dictionary-mk');

// NEVER USE `readFileSync` IN PRODUCTION.
fs.readFileSync(path.join(base, 'index.dic'), 'utf-8');
fs.readFileSync(path.join(base, 'index.aff'), 'utf-8');

License

Dictionary and affix file: GPL-3.0. Rest: MIT © Titus Wormer.