//!
//! Provides this crate's [`Error`] and [`Result`] types.
//!
use FromUtf8Error;
use Error;
// ------------------------------------------------------------------------------------------------
// Public Types
// ------------------------------------------------------------------------------------------------
///
/// The `Error` type for this crate.
///
///
/// A `Result` type that specifically uses this crate's `Error`.
///
pub type MarkdownResult<T> = Result;