mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
83 lines
1.7 KiB
PHP
83 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace Erusev\Parsedown\Components\Inlines;
|
|
|
|
use Erusev\Parsedown\Components\Inline;
|
|
use Erusev\Parsedown\Html\Renderables\Element;
|
|
use Erusev\Parsedown\Html\Renderables\Text;
|
|
use Erusev\Parsedown\Parsing\Excerpt;
|
|
use Erusev\Parsedown\State;
|
|
|
|
final class Code implements Inline
|
|
{
|
|
use WidthTrait;
|
|
|
|
/** @var string */
|
|
private $text;
|
|
|
|
/**
|
|
* @param string $text
|
|
* @param int $width
|
|
*/
|
|
private function __construct($text, $width)
|
|
{
|
|
$this->text = $text;
|
|
$this->width = $width;
|
|
}
|
|
|
|
/**
|
|
* @param Excerpt $Excerpt
|
|
* @param State $State
|
|
* @return static|null
|
|
*/
|
|
public static function build(Excerpt $Excerpt, State $State)
|
|
{
|
|
$marker = \substr($Excerpt->text(), 0, 1);
|
|
|
|
if ($marker !== '`') {
|
|
return null;
|
|
}
|
|
|
|
if (\preg_match(
|
|
'/^(['.$marker.']++)(.*?)(?<!['.$marker.'])\1(?!'.$marker.')/s',
|
|
$Excerpt->text(),
|
|
$matches
|
|
)) {
|
|
$text = \str_replace("\n", ' ', $matches[2]);
|
|
|
|
$firstChar = \substr($text, 0, 1);
|
|
$lastChar = \substr($text, -1);
|
|
|
|
if ($firstChar === ' ' && $lastChar === ' ') {
|
|
$text = \substr(\substr($text, 1), 0, -1);
|
|
}
|
|
|
|
return new self($text, \strlen($matches[0]));
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/** @return string */
|
|
public function text()
|
|
{
|
|
return $this->text;
|
|
}
|
|
|
|
/**
|
|
* @return Element
|
|
*/
|
|
public function stateRenderable()
|
|
{
|
|
return new Element('code', [], [new Text($this->text())]);
|
|
}
|
|
|
|
/**
|
|
* @return Text
|
|
*/
|
|
public function bestPlaintext()
|
|
{
|
|
return new Text($this->text());
|
|
}
|
|
}
|