1#![doc = include_str!("../README.md")]
2
3pub mod error;
4pub mod span;
5pub mod syntax;
6
7mod lexer;
8mod parser;
9mod parser_support;
10mod syntax_display;
11mod syntax_impl;
12
13pub use error::Error;
14pub use parser::{parse_str, recognize_str};
15pub use syntax_impl::Decorated;