fml 0.4.0

Friendly Markup Language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[macro_use]
pub mod macros;
#[cfg(test)]
mod tests;

pub mod functions;
pub use functions::parse;
// The three data structures actually at play in fml::parse
pub use chumsky::{Simple, SimpleSpan};
// And, case anyone needs it
pub use chumsky::prelude as chumsky;

pub const FML_TOKENS: &str = r"\*_~[]()`-#<>{}^|!$";

// Deprecating so that end users dont have to manually include chumsky traits if they dont need to
#[deprecated(note = "deprecated export in favor of fml::parse abstraction")]
pub use functions::parser;