termimad 0.34.1

Markdown Renderer for the Terminal
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Describe how list items are indented when the item has to be
/// wrapped: either only the first line (the one with the bullet)
/// or the whole item as a block.
///
/// FirstLineOnly is more compact, but Block is prettier and more
/// readable.
#[derive(Clone, Copy, Debug, PartialEq, Default)]
pub enum ListItemsIndentationMode {
    FirstLineOnly,
    #[default]
    Block,
}