marksad 0.1.3

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

use crate::encode::Error;

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