1
2
3
4
5
6
7
8
9
//! This module defines all Markdown types that are specified inside the
//! CommonMark specification.

pub mod header;
pub mod image;
pub mod link;
pub mod list;
pub mod markdown;
pub mod paragraph;