Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
wp-content
/
plugins
/
vibes
/
includes
/
libraries
/
markdown
/
inline
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * @copyright Copyright (c) 2014 Carsten Brandt * @license https://github.com/cebe/markdown/blob/master/LICENSE * @link https://github.com/cebe/markdown#readme */ namespace cebe\markdownparser\inline; /** * Adds strikeout inline elements */ trait StrikeoutTrait { /** * Parses the strikethrough feature. * @marker ~~ */ protected function parseStrike($markdown) { if (preg_match('/^~~(.+?)~~/', $markdown, $matches)) { return [ [ 'strike', $this->parseInline($matches[1]) ], strlen($matches[0]) ]; } return [['text', $markdown[0] . $markdown[1]], 2]; } protected function renderStrike($block) { return '<del>' . $this->renderAbsy($block[1]) . '</del>'; } abstract protected function parseInline($text); abstract protected function renderAbsy($blocks); }