Trait Validate

Source
pub trait Validate {
    // Required method
    fn validate(&self) -> bool;
}
Expand description

Validate

A trait for validating markdown content.

Required Methods§

Source

fn validate(&self) -> bool

Validate the markdown content.

Implementors§