layout: default title: Formatting
You have several formatting options:
To apply a format:
$climate->bold('Bold and beautiful.');
$climate->underline('I have a line beneath me.');
$climate->bold()->out('Bold and beautiful.');
$climate->underline()->out('I have a line beneath me.');
You can apply multiple formats by chaining them:
$climate->bold()->underline()->out('Bold (and underlined) and beautiful.');
$climate->blink()->dim('Dim. But noticeable.');