1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//! # vojaq_parser
//!
//! `vojaq_parser` is a Rust crate which can parse Vojaq files.
//!
//! ``` vojaq
//! ありがとう {arigatou} thank you
//! 馬鹿 {baka} idiot | stupid
//! 洗い熊 | アライグマ {araiguma} raccoon {animal}
//! サントノーレ {santonôre} Saint-Honoré {pastry | cake} French
//! ```
//!
//! ## Disclaimer
//!
//! This crate is very buggy and far from being finished.
//! You should not use this crate at the moment.
//!
//! ## Vojaq syntax
//!
//! A variant is a character string which does not contain unescaped `{`, `}`, `|` or a linefeed.
//!
//! A field is an array of variants separated by a `|`.
//!
//! A line is an array of fields in such a way that one in two fields is enclosed between `{` and `}`.
//!
//! A set is an array of lines separated by a linefeed (LF).
pub use ;
pub use read_file;
pub use parse_vojaq;
pub use VojaqField;
pub use VojaqLine;
pub use VojaqSet;