extern crate alloc;
extern crate nom;
use IResult;
use OType;
/// This is the main frontend parser for Owen's Markup Language.
///
/// # Language specification
///
/// The language specification for Owen's Markup Language can be found
/// [here](https://owml.gitlab.io/owml-website/docs/lang-spec/).
///
/// # Using the parser
///
/// All documentation for using this parser can be found
/// [here](https://owml.gitlab.io/owml-website/docs/parser/).