marksad 0.1.3

Markdown parser library with all the extensions
Documentation
/// Markdown decoding warning kind
#[non_exhaustive]
#[derive(Clone, Eq, PartialEq, Debug)]
pub enum WarningKind {
    /// Depending on markdown flavor may be a heading, may not
    ///
    /// `#Ambiguous Heading`
    ///
    /// To disambiguate, use either
    ///
    ///  - `# My Heading`
    ///  - `\# Line that starts with a #`
    AmbiguousHeading,
}

/// Markdown decoding warning
#[derive(Clone, Eq, PartialEq, Debug)]
pub struct Warning<'a> {
    line_text: &'a str,
    line_number: u16,
    warning: WarningKind,
}