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