1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
//! Crate for processing .org files
//!
//! This does not yet completely capture the functionality of org-mode.
//! The following aspects of org-mode are currently supported:
//! * Document fields such as TITLE and AUTHOR
//! * Headings and subheadings
//! * Content text

/// Primary module containing outside-facing API.
pub mod org;

pub use org::*;

mod util;