-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add dictionary wordlist and spellcheck script * Add spell check * Added spell check * Add hunspell * Add AAC to dict * Added additional words to dictionary * Added additional word spellings * Maybe overwrote file * Corrected spelling errors * Finished final spellings
- Loading branch information
1 parent
277da50
commit 643f6f4
Showing
13 changed files
with
251 additions
and
89,124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
1080i | ||
2D | ||
3D | ||
720p | ||
ADI | ||
APIs | ||
Bitrate | ||
chrominance | ||
Codec | ||
Comcast | ||
DRM | ||
FairPlay | ||
Github | ||
HD | ||
HEVC | ||
IPTV | ||
ITU | ||
Intra | ||
Javascript | ||
Luminance | ||
Monetisation | ||
Movielabs | ||
Multicast | ||
NTSC | ||
Narrowcast | ||
OTT | ||
Ogg | ||
OpenGL | ||
PlayReady | ||
Pre | ||
RGB | ||
TCP | ||
Telco | ||
Transactional | ||
Transcode | ||
UHD | ||
Unicast | ||
VLC | ||
Vorbis | ||
WMV | ||
WebGL | ||
WebRTC | ||
bitrate | ||
codebase | ||
codec | ||
codecs | ||
colour | ||
criminalise | ||
decrypt | ||
decrypting | ||
js | ||
natively | ||
utilised |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash | ||
# | ||
# Check the spelling of the LaTeX file and fail if there are errors. | ||
# | ||
|
||
hunspellOutput="$(hunspell -d en_GB -t -a -l -p dict/words **/*tex)" | ||
if [ "${hunspellOutput}" != "" ]; then | ||
# Spelling errors | ||
echo "" | ||
echo "=======================================" | ||
echo "There are spelling errors listed below." | ||
echo "Either fix, or add to \"dict/words\"" | ||
echo "=======================================" | ||
echo "" | ||
hunspell -d en_GB -t -a -l -p dict/words **/*tex | ||
exit 1 | ||
|
||
fi |
Oops, something went wrong.