mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
Implement Header
This commit is contained in:
parent
57c6350184
commit
07c2566042
84
src/Components/Blocks/Header.php
Normal file
84
src/Components/Blocks/Header.php
Normal file
@ -0,0 +1,84 @@
|
||||
<?php
|
||||
|
||||
namespace Erusev\Parsedown\Components\Blocks;
|
||||
|
||||
use Erusev\Parsedown\AST\Handler;
|
||||
use Erusev\Parsedown\AST\StateRenderable;
|
||||
use Erusev\Parsedown\Components\Block;
|
||||
use Erusev\Parsedown\Configurables\StrictMode;
|
||||
use Erusev\Parsedown\Html\Renderables\Element;
|
||||
use Erusev\Parsedown\Parsedown;
|
||||
use Erusev\Parsedown\Parsing\Context;
|
||||
use Erusev\Parsedown\State;
|
||||
|
||||
final class Header implements Block
|
||||
{
|
||||
use BlockAcquisition;
|
||||
|
||||
/** @var string */
|
||||
private $text;
|
||||
|
||||
/** @var 1|2|3|4|5|6 */
|
||||
private $level;
|
||||
|
||||
/**
|
||||
* @param string $text
|
||||
* @param 1|2|3|4|5|6 $level
|
||||
*/
|
||||
public function __construct($text, $level)
|
||||
{
|
||||
$this->text = $text;
|
||||
$this->level = $level;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param Context $Context
|
||||
* @param Block|null $Block
|
||||
* @param State|null $State
|
||||
* @return static|null
|
||||
*/
|
||||
public static function build(
|
||||
Context $Context,
|
||||
Block $Block = null,
|
||||
State $State = null
|
||||
) {
|
||||
$State = $State ?: new State;
|
||||
|
||||
$level = \strspn($Context->line()->text(), '#');
|
||||
|
||||
if ($level > 6 || $level < 1) {
|
||||
return null;
|
||||
}
|
||||
|
||||
/** @var 1|2|3|4|5|6 $level */
|
||||
|
||||
$text = \trim($Context->line()->text(), '#');
|
||||
|
||||
$StrictMode = $State->getOrDefault(StrictMode::class);
|
||||
|
||||
if ($StrictMode->enabled() && isset($text[0]) and $text[0] !== ' ') {
|
||||
return null;
|
||||
}
|
||||
|
||||
$text = \trim($text, ' ');
|
||||
|
||||
return new self($text, $level);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Handler<Element>
|
||||
*/
|
||||
public function stateRenderable(Parsedown $Parsedown)
|
||||
{
|
||||
return new Handler(
|
||||
/** @return Element */
|
||||
function (State $State) use ($Parsedown) {
|
||||
return new Element(
|
||||
'h' . \strval($this->level),
|
||||
[],
|
||||
$State->applyTo($Parsedown->lineElements($this->text))
|
||||
);
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
@ -334,39 +334,6 @@ class Parsedown
|
||||
return $Block;
|
||||
}
|
||||
|
||||
#
|
||||
# Header
|
||||
|
||||
protected function blockHeader(Context $Context)
|
||||
{
|
||||
$level = \strspn($Context->line()->text(), '#');
|
||||
|
||||
if ($level > 6) {
|
||||
return;
|
||||
}
|
||||
|
||||
$text = \trim($Context->line()->text(), '#');
|
||||
|
||||
if ($this->strictMode and isset($text[0]) and $text[0] !== ' ') {
|
||||
return;
|
||||
}
|
||||
|
||||
$text = \trim($text, ' ');
|
||||
|
||||
$Block = [
|
||||
'element' => [
|
||||
'name' => 'h' . $level,
|
||||
'handler' => [
|
||||
'function' => 'lineElements',
|
||||
'argument' => $text,
|
||||
'destination' => 'elements',
|
||||
]
|
||||
],
|
||||
];
|
||||
|
||||
return $Block;
|
||||
}
|
||||
|
||||
#
|
||||
# List
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user