1<!-- This is a sample wordlist that can be converted to a binary dictionary
2     for use by the Latin IME.
3     The format of the word list is a flat list of word entries.
4     Each entry has a frequency between 255 and 0.
5     Highest frequency words get more weight in the prediction algorithm. As a
6     special case, a weight of 0 is taken to mean profanity - words that should
7     not be considered a typo, but that should never be suggested explicitly.
8     You can capitalize words that must always be capitalized, such as "January".
9     You can have a capitalized and a non-capitalized word as separate entries,
10     such as "robin" and "Robin".
11-->
12<wordlist>
13  <w f="255">this</w>
14  <w f="255">is</w>
15  <w f="128">sample</w>
16  <w f="1">wordlist</w>
17</wordlist>
18