mirror of
https://github.com/wassname/join-dic-hunspell.git
synced 2026-08-01 12:30:11 +08:00
29 lines
722 B
Markdown
29 lines
722 B
Markdown
join-dic-hunspell
|
|
=================
|
|
|
|
Join dic files to make a dic file for hunspell
|
|
|
|
## DESCRIPTION
|
|
Join dic files and wordlists to make a dic file for hunspell. This can be used
|
|
in TeXstudio and other programs. This repository includes some technical word
|
|
lists for testing. Also a generic .aff file to go with the produced .dic file.
|
|
|
|
## USAGE
|
|
``` bash
|
|
$ join_dicts.py [options] <file/directory>...
|
|
```
|
|
|
|
#### ARGS
|
|
``` bash
|
|
<dictionary1> <dictionary2> ... -o out.dic # Dictionaries to combine then output dic
|
|
```
|
|
|
|
#### EXAMPLE
|
|
``` bash
|
|
$ python join_dicts.py wordlist1.dic wordlist2.dic -o out.dic
|
|
```
|
|
|
|
#### LICENSE
|
|
|
|
This uses the same license as hunspell: GNU Lesser or General Public License or Mozilla Public License.
|