We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Word list reports with absent terms noted. Also adding Voxforge dict Voxforge looks a bit like a cmudict fork, with schwa's (ax) added.
Redo word-lists with proper handling of duplicate entries The previous version got the markdown wrong if the dictionary had more than one definition, as is often the case. New script: \#!/bin/sh WORDSET=$1 DICT=$2 echo "#" looking up $(basename $WORDSET) in $(basename $DICT) echo 'Generated by `' $0 $@ '`'. while read -r line; do echo echo "## $line" echo for word in $line; do grep -i "^$word[([:space:]]" $DICT | while read -r result; do echo " $result" done done done < $WORDSET
Add some automatically generated NZE word list readings These were created with the following script -- hopefully they are valid markdown: \#!/bin/sh WORDSET=$1 DICT=$2 echo "# looking up $(basename $WORDSET) in $(basename $DICT)" while read -r line; do echo echo "## $line" echo for word in $line; do echo -n " " grep -i "^$word[([:space:]]" $DICT done done < $WORDSET