1 2 3 4 5 6 7 8 9 10 11
//! Provider of [`PrintOut`]. use pulldown_cmark_to_cmark::State; /// Print output and context for resume printing. pub(crate) struct PrintOut<'a> { /// Markdown text. pub text: String, /// Context state for resume printing. pub state: State<'a>, }