1//! This module defines all Markdown types that are specified inside the 2//! CommonMark specification. 3 4pub mod header; 5pub mod image; 6pub mod link; 7pub mod list; 8pub mod markdown; 9pub mod paragraph;