markdown-builder 1.0.0

Opinionated Rust crate for programmatically building markdown documents
Documentation
1
2
3
4
5
6
7
8
9
10
//! This module defines all Markdown types that are specified inside the
//! CommonMark specification.

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