- format_paragraph(+Text, +Options)
- Format a paragraph to the current output. Options defined are:
- width(+Width)
- Width of a line. Default is 72.
- margin_left(+Indent)
- Indent all lines with Indent spaces.
- margin_right(+Margin)
- Additional right margin (same as reducing
width
)
- hang(+Hang)
- Additional indent for the first line. Can be negative.
- bullet(+Bullet)
- Bullet placed before the first line.
- text_align(Alignment)
- One of
left
, right
, center
or justify
- pad(+Char)
- If present, padd to the right using Char. Currently
Char must be ' '.