/**
 * Set Anchor element dim style.
 *
 * @return self Returns instance of the Anchor element class.
 *
 * @access public
 */
public function dim(): self

Examples

Set dim style using fluent interface

use function Thermage\anchor;
use function Thermage\render;

// ...

render(
  anchor('Thermage')->href('https://awilum.github.io/thermage/')->dim()
);

Set dim style using magic classes pipeline

use function Thermage\anchor;
use function Thermage\render;

// ...

render(
  anchor('Thermage', 'dim')->href('https://awilum.github.io/thermage/')
);

Set dim style using shortcodes

use function Thermage\anchor;
use function Thermage\render;

// ...

render(
  anchor('[dim]Thermage[/dim]')->href('https://awilum.github.io/thermage/')
);
Terminal
$ php thermage.php