fml 0.5.0

Friendly Markup Language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod data;
pub use data::*;

mod impls;
pub use impls::*;

#[cfg(feature = "parser")]
mod token;
#[cfg(feature = "parser")]
pub use token::{FunctionToken, Token, Tokens};

#[cfg(test)]
mod tests;