mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
26 lines
449 B
PHP
26 lines
449 B
PHP
|
<?php
|
||
|
|
||
|
namespace Erusev\Parsedown\Components;
|
||
|
|
||
|
use Erusev\Parsedown\Parsing\Context;
|
||
|
|
||
|
interface ContinuableBlock extends Block
|
||
|
{
|
||
|
/**
|
||
|
* @param Context $Context
|
||
|
* @return static|null
|
||
|
*/
|
||
|
public function continue(Context $Context);
|
||
|
|
||
|
/**
|
||
|
* @param bool $isInterrupted
|
||
|
* @return static
|
||
|
*/
|
||
|
public function interrupted($isInterrupted);
|
||
|
|
||
|
/**
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function isInterrupted();
|
||
|
}
|