marksad 0.1.3

Markdown parser library with all the extensions
Documentation
1
2
3
4
5
6
use std::result;

use crate::decode::Error;

/// `Result` type alias for convenience
pub type Result<'a, T = (), E = Error<'a>> = result::Result<T, E>;