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

Examples

Set strikethrough style using fluent interface

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

// ...

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

Set strikethrough style using magic classes pipeline

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

// ...

render( 
  anchor('Thermage', 'strikethrough')
);

Set strikethrough style using shortcodes

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

// ...

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