formatting.md 603 B


layout: default title: Formatting

permalink: /styling/formatting/

Formatting

You have several formatting options:

  • Bold
  • Dim
  • Underline
  • Blink
  • Invert
  • Hidden

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.');