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

Examples

Set blink style using fluent interface

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

// ...

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

Set blink style using magic classes pipeline

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

// ...

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

Set blink style using shortcodes

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

// ...

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