1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
//! 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

#![deny(missing_docs)]

pub mod org;
mod util;

pub use crate::org::Org;