aboutsummaryrefslogtreecommitdiff
path: root/src/ast.rs
blob: 10f8e32783e25825d1961593433812b66f266f94 (plain) (blame)
1
2
3
4
5
6
7
8
//! Build AST trees from Gemtext

mod container;
mod node;

#[cfg(feature = "macros")] mod macros;

pub use {container::Ast, node::Node};