Old Icelandic dictionary for Rust. From "A Concise Dictionary of Old Icelandic" by Geir Zoëga.
The dictionary consists of 29 000+ Old Icelandic words with English translations. Also available for Node.js
Add this to your Cargo.toml
:
toml
[dependencies]
old_icelandic_zoega = "1.0.0"
Dictionary comes in two variants: one with html markup, and one without.
```rust // Ships two variants, plus DictionaryEntry. use oldicelandiczoega::{getdictionary, getnomarkupdictionary, DictionaryEntry};
// Standard dictionary. Contains "strong" and "i" tags to match the printed book. let dictionary = get_dictionary();
// No-markup version. Contains no tags or additional markup. let nomarkupdictionary = getnomarkup_dictionary();
// Both methods return Result, which should always be safe to unwrap.
// Up to you if you wish to just unwrap, or use other error handling method.
let dictionarycontent: Vec
println!("A word from dictionary: {}. First definition for it is: {}", &dictionarycontent[0].word, &dictionarycontent[0].definitions[0]) ```
"A Concise Dictionary of Old Icelandic" dictionary was published in 1910 by Geir Zoëga, which leads to there being many public domain versions of the book available. Zoëgas attempt was to made easier-to-approach version of the more full Cleasby - Vigfusson dictionary, specifically for beginners and those interested in Old Icelandic prose writing.