Function typeset::nest

source ·
pub fn nest(layout: Box<Layout>) -> Box<Layout>
Expand description

Constructs a new Nest layout.

Nest layouts are modal layouts that will ensure that indentation will be prefixed to any broken compositions.

Examples

use typeset::{text, comp, nest};

let layout = nest(comp(text("foo"), text("bar"), false, false));