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

Examples

Set strikethrough style using fluent interface

use function Thermage\paragraph;
use function Thermage\render;

// ...

render( 
  paragraph('Stay RAD!')->strikethrough()
);

Set strikethrough style using magic classes pipeline

use function Thermage\paragraph;
use function Thermage\render;

// ...

render( 
  paragraph('Stay RAD!', 'strikethrough')
);

Set strikethrough style using shortcodes

use function Thermage\paragraph;
use function Thermage\render;

// ...

render( 
  paragraph('[strikethrough]Stay RAD![/strikethrough]').
  paragraph('[s]Stay RAD![/s]')
);
Terminal
$ php thermage.php
Stay RAD!

Getting Started

Methods