pub fn prefix_lines(
lines: Vec<Line<'static>>,
initial_prefix: Span<'static>,
subsequent_prefix: Span<'static>,
) -> Vec<Line<'static>>Expand description
Prefix each line with initial_prefix for the first line and
subsequent_prefix for following lines. Returns a new Vec of owned lines.