1//! Contains builders for all Markdown content types. 2//! 3//! The API provided inside this module can be used to declare Markdown files in 4//! an imperative style. 5 6pub mod image; 7pub mod link; 8pub mod list;