//! # Orchestration
//!
//! Orchestrates the Quillmark engine and its workflows.
//!
//! ## Workflow
//!
//! 1. Create an engine with [`Quillmark::new`]
//! 2. Load a quill with [`Quillmark::quill`] or [`Quillmark::quill_from_path`]
//! 3. Create a workflow with [`Quillmark::workflow`]
//! 4. Render documents using the workflow
pub use Quillmark;
pub use Workflow;
use Quill;
/// Ergonomic reference to a Quill object.