fml 0.3.5

Friendly Markup Language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// TEMP during development
#![allow(dead_code)]
#![allow(unused_imports)]

pub mod ast;

#[cfg(feature = "parser")]
pub mod parser;
#[cfg(feature = "parser")]
pub use parser::parser;

#[cfg(feature = "dioxus")]
pub mod dioxus;